.container-mobile {
    max-width: 450px;
}

.item-width {
    width: 56px;
}

.col-3 {
    width: 20%;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* media query to enable animation for only those who want it */
@media (prefers-reduced-motion: no-preference) {
    .moving-text {
        animation: marquee 15s linear infinite;
    }
}