@tailwind base;
@tailwind components;
@tailwind utilities;

@theme {
    --animate-spin-slow: spin 20s linear infinite;

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