@keyframes bounce-slow {

    0%,
    100% {
    transform: translateY(0);
    animation-timing-function: ease-in-out;
    }

    50% {
    transform: translateY(-10px);
    animation-timing-function: ease-in-out;
    }
}

.animate-bounce-slow {
    animation: bounce-slow 2s infinite;
}

@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.animate-spin-slow {
    animation: spin-slow 18s linear infinite;
}