body {
	background-color: black;
}

@keyframes mymove {
	30% {transform: rotate(180deg);}
}

svg {
	animation: mymove 4s infinite;
}