.scroller {
    overflow: hidden;
    white-space: nowrap;
}

.scroller-content {
    display: inline-block;
    animation: scroll 40s linear infinite;
}

.scroller:hover .scroller-content {
    animation-play-state: paused;
}

.card {
    display: inline-block;
    margin: 0 1rem;
    background: #eee;
    padding: 1rem;
    border-radius: 8px;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}