/* Custom animation */
.animate-spin-slow {
    animation: scroll 2.5s cubic-bezier(0.2, 0.8, 0.4, 1) forwards;
}

@keyframes scroll {
    to {
        transform: translateY(calc(-100% + 200px));
    }
}
