<style>
.track-horizontal {
position: absolute;
white-space: nowrap;
will-change: transform;
**animation: marquee-horizontal 60s linear infinite; **
/* manipulate the speed of the marquee by changing "40s" line above*/
}
.track-horizontal:hover {
animation-play-state: paused;
}
@keyframes marquee-horizontal {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
</style>