body {
  background: linear-gradient(100deg, #000000, #5A1E3A);
  text-shadow: #B98389 1px 0 10px;
  color: white;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.gifs {
  height: 100vh;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  box-shadow: 10px 5px 5px #9DA39A;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  
}

.button {
  background-color: #B98389;
  box-shadow: 0 8px 20px rgba(255, 120, 140, 0.4);
  border-radius: 1px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 30px; 
}

h1 {
  position: sticky;
  top: 0;
  z-index: 100;
  text-align: center;
  padding: 20px;
  animation-duration: 3s;
  animation-name: slide-in;
  background: rgba(15,15,19,0.8);
  letter-spacing: 2px;
}

h2 {
  margin-top: 0;
  padding: 20px;
  font-weight: 500px
}

p {
  text-align: center;
  opacity: 0.8;
  max-width: 500px

}


.start-button {
  opacity: 0;
  pointer-events: none;
  animation: revealButton 2.5s ease forwards;
  animation-delay: 2s; /* ← forces pause before interaction */
}

@keyframes revealButton {
  to {
    opacity: 1;
    pointer-events: auto;
  }
}
.p {
  animation-duration: 3s;
  animation-name: slide-in;
}

@keyframes slide-in {
  from {
    translate: 150vw 0;
    scale: 200% 1;
  }
  to {
    translate: 0 0;
    scale: 100% 1;
  }
}