@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;1,900&display=swap');
*{
    font-family: 'Poppins',cursive;
}
body{
    color: azure;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
}
.greetings{
    font-size: 6rem;
    font-weight: 900;
}
.greetings > span{
    display: inline-block;
    animation: glow 2.5s ease-in-out infinite;
    animation-delay: calc(0.2s * (var(--index) + 1)); /* Delay animasi untuk setiap huruf */

}
@keyframes glow{
    0%, 100%{
        color: #fff;
        text-shadow: 0 0 12px #00fff7, 0 0 50px #00fff7, 0 0 100px #00fff7;
    }
    10%, 90%{
        color: #dca7dc;
        text-shadow: none;
    }
}


.description{
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.button a{
    text-decoration: none;
    font-size: 1rem;
    color: #111;
}

@media screen and (max-width:574px){
    .greetings{
        display: block;
        font-size: 2.5rem;
        font-weight: 500;
        text-align: center;
    }
    .description{
        font-size: 1rem;
    }
    
    .button a{
        font-size: 1rem;
    }
}

.description{
    color: #f7c2be;
}

/* Estilo para el botón */
.button button {
    background-color: rgba(154, 240, 239, 0.997); 
    border: none; /* Sin bordes */
    padding: 10px 20px; /* Ajusta el relleno según tu preferencia */
    font-size: 18px; /* Tamaño de fuente */
    cursor: pointer;
    position: relative; /* Necesario para el resplandor */
    border-radius: 20px; /* Esquinas redondeadas */
    transition: background-color 0.3s ease-in-out; /* Transición suave para el color de fondo */
  }
  
  
  .button button a {
    text-decoration: none; 
    color: inherit; 
  }
  
  
  .button button:hover {
    background-color: rgb(0, 251, 255); /* Cambia el color de fondo al pasar el mouse a naranja */
    box-shadow: 0 0 10px rgb(241, 159, 237), 0 0 20px rgb(237, 156, 244), 0 0 30px rgb(247, 0, 255); /* Efecto de resplandor amarillo */
  }
  
  