.myDIV {
  margin: auto;
  border-radius: 20px;
  
  background-color: coral;
  color: white;
  animation: mymove 15s ;
  animation-duration: 5s;
    animation-fill-mode: forwards;
}

@keyframes mymove {
  50% {transform: rotate(180deg);}
}