Animacion de Gota CSS

#sun {
margin-left: -10px;
margin-top: 6px;
opacity: 0;
width: 60px;
height: 60px;
position: absolute;
left: 45px;
top: 15px;
z-index: 1;
 
animation-name: rotate;
animation-duration: 16000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
 
#sun path {
stroke-width: 0.18;
fill: #9ea1a4;
}
@<a href="https://www.cssblog.es/tags/keyframes/">keyframes</a> rotate {
0% {
transform: rotateZ(0deg);
}
 
100% {
transform: rotateZ(360deg);
}
}
Dark Dunlin