.shoe-jump {
  text-align: center;
}
.shoe-jump img {
  width: 28%;
}
.shoe-jump .down-shoe {
  animation: moveShoe 1s alternate-reverse infinite;
}

@keyframes moveShoe {
  from {
    transform: translateY(0) rotateX(30deg);
    box-shadow: 0 10px 5px -5px rgba(211, 211, 211, 0.8);
  }
  to {
    transform: translateY(-50px);
  }
}/*# sourceMappingURL=shoe-jump.css.map */