@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.animate-draw {
    animation: draw 0.6s ease-out forwards;
}

.animate-draw-delay {
    animation: draw 0.4s ease-out 0.4s forwards;
}

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

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

