@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;1,900&display=swap');
*{
    font-family: 'Poppins',cursive;
    box-sizing: border-box;
}
html{
    max-width: 100%;
    overflow-x: hidden;
}
body{
    color: azure;
    width: 100%;
    min-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #060604;
    background-image: radial-gradient(ellipse at center, #1a1608 0%, #060604 70%);
    text-align: center;
    padding: 20px;
}

.botones{
    padding: 9px;
    border-radius: 80px;
    background-color: transparent;
    border: none;
    margin-top: 10px;
}

.botones a{
    background-image: linear-gradient(135deg, #ffce00, #ff9d00);
    padding: 12px 22px;
    border-radius: 80px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
    box-shadow: 0 4px 20px rgba(255, 174, 0, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
}

.botones a:hover{
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 26px rgba(255, 174, 0, 0.65);
}

.botones a:focus{
    background-image: linear-gradient(135deg, #39c6d6, #23a7b8);
}

.greetings{
    font-size: clamp(2.1rem, 11vw, 5.5rem);
    font-weight: 900;
    max-width: 100%;
    word-break: break-word;
}
.greetings > span{
    animation: glow 2.5s ease-in-out infinite;
}
@keyframes glow{
    0%, 100%{
        color: #fff;
        text-shadow: 0 0 12px #ffce00, 0 0 50px #ffce00, 0 0 100px #ff9d00;
    }
    10%, 90%{
        color: #111;
        text-shadow: none;
    }
}
.greetings > span:nth-child(2){ animation-delay: .1s; }
.greetings > span:nth-child(3){ animation-delay: .2s; }
.greetings > span:nth-child(4){ animation-delay: .3s; }
.greetings > span:nth-child(5){ animation-delay: .4s; }
.greetings > span:nth-child(6){ animation-delay: .5s; }
.greetings > span:nth-child(7){ animation-delay: .6s; }
.greetings > span:nth-child(8){ animation-delay: .7s; }
.greetings > span:nth-child(9){ animation-delay: .8s; }
.greetings > span:nth-child(10){ animation-delay: .9s; }
.greetings > span:nth-child(11){ animation-delay: 1s; }
.greetings > span:nth-child(12){ animation-delay: 1.1s; }
.greetings > span:nth-child(13){ animation-delay: 1.2s; }
.greetings > span:nth-child(14){ animation-delay: 1.3s; }
.greetings > span:nth-child(15){ animation-delay: 1.4s; }

.description{
    font-size: clamp(0.95rem, 4vw, 1.3rem);
    margin-bottom: 24px;
    margin-top: 6px;
    color: #ffe9b3;
    letter-spacing: 0.5px;
    max-width: 90vw;
    padding: 0 8px;
}

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

@media screen and (max-width: 574px){
    .greetings{
        display: block;
        font-weight: 800;
        text-align: center;
    }

    .botones a{
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 360px){
    .description{
        letter-spacing: 0.2px;
    }
}

@media screen and (max-height: 480px){
    body{
        justify-content: flex-start;
        padding-top: 32px;
    }
    .greetings{
        font-size: clamp(1.8rem, 9vh, 3rem);
    }
}
