
.hover\:animate-play-paused:hover div{
    animation-play-state: paused;
}
.move1{
animation: move 40s linear infinite;
animation-delay: -40s;
}
.move2{
    animation: move2 40s linear infinite;
    animation-delay: -20s;
}

@keyframes move {
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}
@keyframes move2 {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-200%);
    }
    
}