.bgImageCharacter {
  position: absolute;
  bottom: 0%;
  left: 50%;
  z-index: 30;
  width: 100%;
  transform: translate(-50%, 0%);
}

.iconBall {
  position: absolute;
  z-index: 29;
  width: 5%;
  left: 30%;
  top: 60%;
  transform: translate(-67%, 15%);
  animation: run 6s linear infinite;
}

@keyframes run {
  from {
    transform: translate(-67%, 15%) rotate(0deg);
  }

  to {
    transform: translate(-67%, 15%) rotate(360deg);
  }
}

.btnDownload {
  position: absolute;
  z-index: 31;
  width: 30%;
  left: 50%;
  top: 81%;
  transform: translate(-50%, 0%);
}