@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;
    display: flex;
}
.greetings > span{
    animation: glow 3s ease-in-out infinite;
}
@keyframes glow{
    0%, 100%{
        color: #fff;
        text-shadow: 0 0 12px #d639cf, 0 0 50px #d639cf, 0 0 100px #39c6d6;
    }
    10%, 90%{
        color: #111;
        text-shadow: none;
    }
}
.greetings > span:nth-child(1){
    animation-delay: .2s ;
}
.greetings > span:nth-child(2){
    animation-delay: .4s ;
}
.greetings > span:nth-child(3){
    animation-delay: .6s;
}
.greetings > span:nth-child(4){
    animation-delay: .8s;
}
.greetings > span:nth-child(5){
    animation-delay: 1s;
}
.greetings > span:nth-child(6){
    animation-delay: 1.2s;
}
.greetings > span:nth-child(7){
    animation-delay: 1.4s;
}
.greetings > span:nth-child(8){
    animation-delay: 1.6s;
}
.greetings > span:nth-child(9){
    animation-delay: 1.8s;
}
.greetings > span:nth-child(10){
    animation-delay: 2s;
}
.greetings > span:nth-child(11){
    animation-delay: 2.2s;
}
.greetings > span:nth-child(12){
    animation-delay: 2.4s;
}
.greetings > span:nth-child(13){
    animation-delay: 2.6s;
}
.greetings > span:nth-child(14){
    animation-delay: 2.8s;
}
.greetings > span:nth-child(15){
    animation-delay: 3s;
}

.description span{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    margin: 30px 0 30px 0;
}

.bttn{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.bttn span{
    font-size: 0.8rem;
}

.bttn button{
    border-radius: 10px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
}

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

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

    .button a{
        font-size: .5rem;
    }
}
@media (min-width: 768px) {
    .heartcvs {
        position: absolute;
        right: -20%;
        top: 10%;
    }
}
