.logo{
animation: text-focus-in 2s cubic-bezier(0.550, 0.085, 0.680, 0.530) 4.3s both;
}
@keyframes text-focus-in {
0% {
transform: rotate(0);
filter: blur(12px);
opacity: 0.9;
}
100% {
filter: blur(0px);
opacity: 1;
transform: rotate(360deg);
}
}