/* Custom styles for Underdog Website */
html {
    scroll-behavior: smooth;
}

/* Marquee Animation */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

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

.marquee-track {
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

/* Pause/Slow animation controlled via JS now */
/*.marquee-container:hover .marquee-track {
    animation-play-state: paused; 
}*/