{
    margin: 0;
    padding: 0;
}

.text-box{
    font-size: 50px;
    font-family: "Coral Pixels", serif;
    color: rgb(249, 195, 195);
    position: absolute;
    top:40%;
    left: 40%;
    transform: translate(-50%, -50%);
}
span{
    display: inline-block;
    font-weight: bolder;
    animation: mover 6s linear infinite;
}

@keyframes mover{
    0%{
        text-shadow: 0 0 30px rgba(0, 0, 0, 0);
    }
    50%{
        text-shadow: 0 0 30px rgba(71, 171, 0, 0.3);
        transform: translateY(30px);
    }
    100%{
        text-shadow: 0 0 30px rgba(0,0,0,0);
    }
}

span:nth-child(1){
    animation-delay:0.5s;
}
span:nth-child(2){
    animation-delay:1s;
}
span:nth-child(3){
    animation-delay:1.5s;
}
span:nth-child(4){
    animation-delay:2s;
}
span:nth-child(5){
    animation-delay:2.5s;
}
span:nth-child(6){
    animation-delay:3s;
}
span:nth-child(7){
    animation-delay:3.5s;
}

