@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Apply the animation to the selected text element */
selector svg {
animation: spin 12s linear infinite; /* Adjust the duration (12s) and timing function (linear) as needed */
}