@font-face {
  font-family: "spicypizza";
  src: url("/fonts/Spicy\ Pizza.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* ===== GLOBAL ===== */
body {
   font-family: "spicypizza", cursive;
  background-color: #f5f5f5;
}


.section1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* min-height: 100vh; */
  background-image: url("/images/section1.png");
  background-position: center;
  background-size: cover;
}


@media (max-width: 768px) {
  .section1 {
   background-image: url("/images/section-mb.png");
  background-position: center;
  background-size: cover;
  }
}

/* ===== MARQUEE SECTION ===== */
.brainrot-marquee {
  background: #191629;
  overflow: hidden;
  padding: 25px 0;
  border-top: 6px solid #502540;
  border-bottom: 6px solid #502540;
}

/* WRAPPER */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* CONTENT */
.marquee-content {
  display: flex;
  width: max-content;
  animation: scroll-right 18s linear infinite;
}

/* TEXT STYLE */
.marquee-content span {
  font-size: 2.45rem;
  font-weight: 900;
  color: #ffeb3b;
  padding: 0 40px;
  white-space: nowrap;
  text-shadow: 3px 3px 0 #ff3d00, 6px 6px 0 #000;
}

/* ANIMATION */
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}


.comic-footer {
  background: #000;
  border-top: 6px solid #000;
}

.footer-heading {
    color: #fff;
  font-size: 2rem;
  font-weight: 900;
  text-shadow: 3px 3px 0 #000;
  margin-bottom: 15px;
}

.footer-disclaimer {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.footer-creator {
    color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
}

.creator-img {
  width: 150px;
  height: auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-heading {
    font-size: 1.5rem;
  }

  .footer-disclaimer {
    font-size: 0.9rem;
  }

}
