body {
  background-color: #fff;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

img {
  max-width: 799px;
  max-height: 799px;
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.image {
  position: absolute;
  max-width: 799px;
  max-height: 799px;
  width: 100%;
}

.image:nth-of-type(6) {
    
  animation: Gun 4s ease infinite;

}

.image:nth-of-type(5) {

  animation: Plarform 4s ease infinite;

}
.image:nth-of-type(4) {

  animation: Speed 4s ease infinite;
}

.image:nth-of-type(3) {
    
  animation: Body 4s ease infinite;

}

.image:nth-of-type(2) {

 animation: Eyes 4s ease infinite;

}

@keyframes Body {
 25% {
    transform: rotate(2deg) scale(1.4);
}
  75% {
    transform: rotate(-2deg) scale(0.8);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes Eyes {
  30% {
    transform: rotate(4deg) scale(1.2);
}
  75% {
    transform: rotate(-4deg) scale(0.9);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes Damage {
 25% {
    transform: rotate(2deg) scale(1.3);
}
  75% {
    transform: rotate(-2deg) scale(0.8);
  }
  100% {
    transform: rotate(0deg) scale(1);
  
  }
}


@keyframes Platform {
 25% {
    transform: rotate(2deg) scale(1.2);
}
  75% {
    transform: rotate(-2deg) scale(0.8);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes Gun {
 25% {
    transform: rotate(2deg) scale(1.2);
}
  75% {
    transform: rotate(-2deg) scale(0.8);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}