@charset "utf-8";
/* CSS Document */


.animatemagic {
  animation-name: example2;
  animation-duration: 9s;
  animation-iteration-count:infinite;
}

@keyframes example2 {
  0%   {  transform: rotateZ(-1deg) translate3d(0,0,0);}
  
  50%  {  transform: rotateZ(1deg) translate3d(15px,-5px,0);}
  
  100% { transform: rotateZ(-1deg) translate3d(0,0,0);}
}
