@keyframes scroll {
0% {
transform: translate(0, 0);
}
50% {
transform: translate(0, 0);
}
100% {
transform: translate(-100%, 0)
}
}
.marquee span {
display: inline-block;
padding-left: 100%;
-webkit-animation: scroll 10s infinite linear;
-moz-animation: scroll 10s infinite linear;
animation: scroll 10s infinite linear;
}