body{
  width:500px;
  height:500px;
  text-align:center;
  vertical-align:middle;
  background-color:rgba(255, 0, 0, 0.0);
}

@keyframes floralRotate {
  0% {transform:rotate(0deg);}
  100% {transform:rotate(360deg);}

}

img{
  width:290px;
  margin:40px 0px 0px 0px;
  animation-name: floralRotate;
  animation-duration: 4s;
  animation-iteration-count:6;
}
