I just came across this situation where I needed a clockwise full 360 degree rotation and to solve it I did this:
@keyframes logomove { 0% {transform: rotate(-360deg);} }
did the trick for me.