.forani{
    height: 100vh;
    width: 100vw;
    background-color: white;
    position: fixed;

    z-index: 1000;
}
.geeks { 
    height: 40px; 
    position: absolute; 
    top: 47%; 
    left: 50%; 
    transform: translateX(-50%) translateY(-50%); 
} 
.total{
    z-index: 0;
}
.geeks span { 
    font-size: 30px; 
    color: #590a65; 
    display: inline-block; 
    transition: all 0.5s; 
    animation: forloder 2s infinite; 
} 
.geeks span:nth-child(1) { 
    animation-delay: 0.1s; 
} 
.geeks span:nth-child(2) { 
    animation-delay: 0.2s; 
} 
.geeks span:nth-child(3) { 
    animation-delay: 0.3s; 
} 
.geeks span:nth-child(4) { 
    animation-delay: 0.4s; 
} 
.geeks span:nth-child(5) { 
    animation-delay: 0.5s; 
} 
.geeks span:nth-child(6) { 
    animation-delay: 0.6s; 
} 
.geeks span:nth-child(7) { 
    animation-delay: 0.7s; 
} 
.geeks span:nth-child(8) { 
    animation-delay: 0.8s; 
} 
.geeks span:nth-child(9) { 
    animation-delay: 0.9s; 
} 
.geeks span:nth-child(10) { 
    animation-delay: 1s; 
} 
.geeks span:nth-child(11) { 
    animation-delay: 1.1s; 
} 
.geeks span:nth-child(12) { 
    animation-delay: 1.2s; 
} 
.geeks span:nth-child(13) { 
    animation-delay: 1.3s; 
} 

@keyframes forloder { 
    0% { 
        color: #590a65; 
        transform: translateY(0); 
        margin-left: 0; 
    } 
    25% { 
        color: #0096c8; 
        transform: translateY(-15px); 
        margin-left: 10px; 
    } 
    100% { 
        color: #590a65; 
        transform: translateY(0); 
        margin-left: 0; 
    } 
}     
.scrolldisable{
    height: 100vh;
    overflow-y: hidden;
}
@media (max-width: 500px){
    .geeks span{
        font-size: 15px;
    }
}