.move_animation {
  animation: move 5s linear infinite alternate;
}
@keyframes move {
  0% {
    transform: translateY(-10px) rotate(4deg);
  }
  100% {
    transform: translateY(10px) rotate(0deg);
  }
}/*# sourceMappingURL=animation.css.map */