
@import url('https://fonts.googleapis.com/css2?family=Archivo&family=Archivo+Black&display=swap');

.rounded-text {
    font-family: 'Archivo Black', sans-serif;
    width: 100px;
    height: 100px;
    text-transform: uppercase;
    transform: rotate(-103deg);
    color: #fff;
    font-size: 3.5rem;
    z-index: -1;
}

.rounded-text svg {
    color: #fff;
}
@keyframes rotating {
from {
    transform: rotate(360deg);
}
to {
    transform: rotate(0deg);
}
}

.rotating {
animation: rotating 12s linear infinite;
}
  