.main img {
  position: absolute;
  top: 30px;
  left: 10%;
}

.main img.shape1 {
  position: absolute;
  top: 100%;
  left: 5%;
}

.main img.shape2 {
  position: absolute;
  top: 20px;
  left: 80%;
}

.main img.triangle2 {
  position: absolute;
  top: 150px;
  left: 70%;
}

.main img.dot1 {
  position: absolute;
  top: 70%;
  left: 20%;
}

.main img.dot3 {
  position: absolute;
  top: 200px;
  left: 25%;
}

.main img.dot4 {
  position: absolute;
  top: 130px;
  left: 95%;
}

.main img.dot5 {
  position: absolute;
  top: 220px;
  left: 90%;
}

.article .img {
  position: absolute;
  top: 80px;
  left: 200px;
}

.article .img.dot5 {
  position: absolute;
  top: 220px;
  left: 80%;
}

.article .img.triangle3 {
  position: absolute;
  top: 150px;
  left: 95%;
}

.article .img.dot6 {
  position: relative;
  top: 250px;
  left: 5%;
}

.article .img.dot2 {
  position: absolute;
  top: 200px;
  left: 400px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, 30px, 0);
  }
}

@keyframes horizontalmove {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(30px, 0px, 0);
  }
}

@keyframes verticalmove {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0px, 30px, 0);
  }
}

@keyframes zoominout {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1.5);
  }
}

@keyframes zoominout1 {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}

@keyframes blink {
  from {
    clip-path: circle(0px);
  }
  to {
    clip-path: circle(160px);
  }
}

.triangle1, .triangle2, .triangle3 {
  animation: spin 3000ms linear infinite;
}

.shape1, .shape2 {
  animation: bounce 1s infinite alternate;
}

.dot1, .dot6 {
  animation: horizontalmove 1s infinite alternate;
}

.dot2, .dot4 {
  animation: zoominout 4000ms infinite alternate;
}

.dot3, .dot5 {
  animation: zoominout1 4000ms infinite alternate;
}
