@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 0.75s linear infinite;
}
