body {
  background-color: #f8adb1;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;    
  min-height: 100vh;     
  text-align: center;
  overflow: hidden; 
}

h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 410;
  font-size: clamp(4rem, 10vw, 10rem); 
  margin: 0;
  line-height: 0.9;
  color: #000000;     
  text-transform: uppercase;
  letter-spacing: -4px; 
  opacity: 0; 
  animation: revealText 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

h1:nth-child(1) { animation-delay: 0.2s; }
h1:nth-child(2) { animation-delay: 0.4s; }
h1:nth-child(3) { animation-delay: 0.6s; }

.enlace-titulo {
  text-decoration: none; 
  display: flex; 
  flex-direction: column;
  align-items: center;
  cursor: pointer; 
}

.enlace-titulo:hover h1 {
  opacity: 0.6; 
  transition: 0.5s ease;     
}

@keyframes revealText {
  0% {
    opacity: 0;
    transform: translateY(30px) skewY(2deg); 
  }
  100% {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
  }
}

/*ajuste para fon*/
@media (max-width: 600px) {
  h1 {
    font-size: clamp(3rem, 15vw, 5rem); 
    letter-spacing: -2px; 
    line-height: 1; 
  }

  body {
    padding: 0 20px;
  }
}