
@keyframes load {
0%{
opacity: 0.00;
font-size: 5px;
font-weight: 0; 
filter: blur(6px);
}

100%{
opacity: 1; 
font-weight: 700;
filter: blur(0.4px);
}
}

.animate {
align-items: center;
font-size: 42px;
font-family: Arial;
animation: load 2s infinite 0s ease-in;
animation-direction: normal;
color: #CCCCCC;
}

