* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  background: #ffffcc;
  position: relative;
  padding-bottom: 60px;
  overflow: hidden;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #e6e68a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  font-family: "Comic Sans MS", cursive;
  color: #000;
  z-index: 2;
  gap: 8px;
}

.tooltip {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  position: relative;
  color: red;
}
.tooltip::before {
  content: "?";
  font-size: 14px;
  font-weight: bold;
}
.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s;
}
.tooltip.active::after, .tooltip:hover::after {
  visibility: visible;
  opacity: 1;
}

h1 {
  font-family: "Comic Sans MS", cursive;
  margin-bottom: 2rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.butt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 5rem 1rem;
  width: 100%;
  padding: 2rem;
  max-width: 100vw;
}

.butt {
  position: relative;
  width: 150px;
  height: 75px;
  margin: 0 auto;
}
.butt .cheek {
  position: absolute;
  width: 51%;
  height: 100%;
  background: #ffd1b3;
  border-radius: 0 0 50% 50%;
  z-index: 1;
}
.butt .cheek::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #4a2803;
  left: 20%;
  top: 15%;
  transform: rotate(-15deg);
}
.butt .cheek::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #4a2803;
  left: 40%;
  top: 20%;
  transform: rotate(20deg);
}
.butt .cheek span:nth-child(1) {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #4a2803;
  left: 60%;
  top: 25%;
  transform: rotate(-20deg);
}
.butt .cheek span:nth-child(2) {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #4a2803;
  left: 30%;
  top: 35%;
  transform: rotate(15deg);
}
.butt .cheek span:nth-child(3) {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #4a2803;
  left: 50%;
  top: 40%;
  transform: rotate(-10deg);
}
.butt .cheek span:nth-child(4) {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #4a2803;
  left: 70%;
  top: 45%;
  transform: rotate(25deg);
}
.butt .cheek span:nth-child(5) {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #4a2803;
  left: 25%;
  top: 50%;
  transform: rotate(-18deg);
}
.butt .cheek span:nth-child(6) {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #4a2803;
  left: 45%;
  top: 55%;
  transform: rotate(22deg);
}
.butt .cheek span:nth-child(7) {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #4a2803;
  left: 65%;
  top: 60%;
  transform: rotate(-12deg);
}
.butt .cheek span:nth-child(8) {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #4a2803;
  left: 35%;
  top: 65%;
  transform: rotate(16deg);
}
.butt .cheek span:nth-child(9) {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #4a2803;
  left: 55%;
  top: 70%;
  transform: rotate(-14deg);
}
.butt .cheek span:nth-child(10) {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #4a2803;
  left: 75%;
  top: 68%;
  transform: rotate(18deg);
}
.butt .cheek.left {
  left: 0;
}
.butt .cheek.right {
  right: 0;
  transform: scaleX(-1);
}
.butt .poop {
  position: absolute;
  left: 50%;
  bottom: 30%;
  transform: translate(-50%, 0);
  width: 20%;
  height: 60%;
  background: #8b4513;
  border-radius: 40% 40% 50% 50%;
  animation: pooping 2s infinite;
  animation-delay: var(--poop-delay);
  transform-origin: top center;
  z-index: 0;
}

@keyframes pooping {
  0% {
    transform: translate(-50%, 0);
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 150px);
    opacity: 0;
  }
}

/*# sourceMappingURL=style.css.map */
