/* Base font */
body { 
    font-family: 'Inter', sans-serif; 
}

/* Infinite Scroller Animation */
.scroller-container {
    /* Create the fade effect on edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-inner {
    width: max-content;
    /* This connects to the @keyframes below */
    animation: scroll 40s linear infinite;
}

/* Pause animation when user hovers over logos */
.scroller-container:hover .scroller-inner {
    animation-play-state: paused;
}

@keyframes scroll {
    to { 
        transform: translateX(-50%); 
    }
}