html {
    scroll-behavior: smooth;
}

@keyframes loop-scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.animate-bounce-slow {
    animation: bounce 3s infinite;
}

.animate-loop-scroll {
    animation: loop-scroll 30s linear infinite;
}

