.download a {
  font-size: 20px;
  color: blue;
}

.download {
  width: 200px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 5%;
  margin-bottom: 7.5%;
}

body {
  overflow: hidden;
}
body .wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: azure;
}
body .wrapper img {
  width: 25%;
}
body .wrapper .abc {
  position: relative;
  right: 25%;
  animation-name: my-anime;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 10s;
}

@keyframes my-anime {
  0% {
    transform: perspective(700px) rotateX(0deg) rotateY(0deg) translateZ(0);
  }
  50% {
    transform: perspective(700px) rotateX(180deg) rotateY(-180deg) translateZ(-1500px);
  }
  100% {
    transform: perspective(700px) rotateX(360deg) rotateY(0deg) translateZ(0);
  }
}

/*# sourceMappingURL=style.css.map */
