body {
  background-color: #ffc0cb;
  font-family: "Comic Sans MS", cursive, sans-serif;
  color: #f04b96;
  margin: 0;
  padding: 0;
  text-align: center;
}

.banner {
  background: linear-gradient(
    135deg,
    #ffc0cb,
    #ffc0cb
  ); 
  padding: 40px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.8),
    0 0 30px rgba(255, 105, 180, 0.6); 
  position: relative;
  animation: glowBanner 3s infinite alternate; 
}

@keyframes glowBanner {
  0% {
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.8),
      0 0 20px rgba(255, 105, 180, 0.6);
  }
  100% {
    box-shadow: 0 0 40px rgba(255, 20, 147, 1), 0 0 60px rgba(255, 105, 180, 1);
  }
}

.marquee {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}

.marquee h1 {
  font-family: "Comic Sans MS", cursive, sans-serif;
  color: #66194d;
  font-size: 50px;
  padding: 20px;
  text-shadow: 2px 2px 10px #ff69b4, 0 0 15px #e60073;
  animation: moveText 10s infinite linear;
  position: relative;
  z-index: 2;
}

@keyframes moveText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes float-heart {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes moveText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.menu {
  text-align: center;

  border-radius: 30px;
  padding: 15px;
  font-family: "Comic Sans MS", cursive, sans-serif;
  font-size: 24px;
  color: #ffffff;
  text-shadow: 2px 2px 5px #ff69b4, 0 0 15px #e60073;

  margin-top: 10px;

  position: relative;
  z-index: 100;
}

.menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 50px;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #ff00ff;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.menu a:hover {
  background-color: #ff1493;
  color: #000000;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff1493; 
  box-shadow: 0 0 25px rgba(255, 0, 255, 1);
}

.menu a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.menu::before {
  content: "☆";
  font-size: 40px;
  position: absolute;
  top: -10px;
  left: 20%;
  animation: float-heart 3s ease-in-out infinite;
}

.menu::after {
  content: "☆";
  font-size: 40px;
  position: absolute;
  top: -10px;
  right: 20%;
  animation: float-heart 3s ease-in-out infinite reverse;
}

@keyframes float-heart {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.post {
  border: 3px dashed #f04b96;
  background-color: #fff0f5;
  margin: 20px auto;
  padding: 15px;
  width: 70%;
  text-align: left;
  color: #f04b96;
}

.post h2 {
  color: #f04b96;
  margin-top: 0;
}

.footer {
  background: #ffb6c1;
  color: #ff1493;
  text-align: center;
  padding: 15px;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  border-top: 2px solid #ff69b4;
  border-radius: 10px 10px 0 0;
  z-index: 9999;
}

.image-gallery {
  background-color: #fff0f5;
  border: 4px dotted #f04b96;
  padding: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
  overflow: visible;
}

.star-frame {
  position: relative;
  display: inline-block;
  text-decoration: none;
   z-index: 1;
}

.star-frame img {
  border: 6px double #f04b96;
  background-color: #ffc0cb;
  padding: 8px;
  width: 120px;
  height: auto;
  box-shadow: 0 0 15px #f04b96;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; /* Necessário para o z-index funcionar */
  z-index: 1;
}

.star-frame:hover {
  z-index: 999;
}

.star-frame:hover img {
  transform: scale(5);
  box-shadow: 0 0 25px #ff69b4;
  z-index: 1;   
  transform-origin: center center;
  z-index: 999;
}

.stars {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg fill="%23ff69b4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,5 61,39 98,39 68,61 79,95 50,75 21,95 32,61 2,39 39,39" /></svg>')
    repeat;
  background-size: 20px 20px;
  animation: sparkle 1s linear infinite;
  opacity: 0.2;
  border-radius: 12px;
}

@keyframes sparkle {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 20px 20px;
  }
}

.starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
}

.star {
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #8c2678;
  border-radius: 50%;
  opacity: 0;
  animation: twinkle 1s infinite;
  z-index: 1000;
  animation: twinkle 1s infinite, moveStars 0.5s ease-in-out;
}

@keyframes twinkle {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.2;
  }
}

@keyframes moveStars {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}

.lacey2:hover {
  content: url("img/lacey2.png");
}

.maisie2:hover {
  content: url("img/maisie2.png");
}

header:hover {
  animation: wiggle 0.4s;
}

@keyframes wiggle {
  0% {
    -webkit-transform: skewX(24deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(55deg);
  }
  30% {
    -webkit-transform: skewX(-90deg);
  }
  40% {
    -webkit-transform: skewX(29deg);
  }
  50% {
    -webkit-transform: skewX(-90deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(10deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
  }
}

    @keyframes blink {
      0% { opacity: 1; }
      50% { opacity: 0; }
      100% { opacity: 1; }
    }

    h2.blinking {
      animation: blink .5s step-start infinite;
      color: red;
      font-family: "Comic Sans MS", cursive, sans-serif;

      display: inline-block;
    }