.scroller {
    width: 100vw;
    overflow: hidden;
}

.scroller-track {
    display: flex;
    align-items: center;
    gap: 40px;

    width: max-content;
    animation: scroll-left 20s linear infinite;
}

.scroller img {
    height: 120px;
    width: auto;
    max-width: 160px;

    padding: 16px;
    flex-shrink: 0;
    object-fit: contain;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}