.animmm {
  width: 100%;
  height: 100%;
}

.box {
  height: 3rem;
  width: 3rem;
  margin: 1rem;
  opacity: 0.3;
  z-index: -1;
  position: fixed;
  border-radius: 50%;
}

.box4 {
  background: purple;
  -webkit-animation-name: movement;
          animation-name: movement;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.box5 {
  top: -10%;
  background: red;
  -webkit-animation: movement;
          animation: movement;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  animation-direction: reverse;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.box6 {
  top: -5%;
  background: red;
  -webkit-animation: movement;
          animation: movement;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes movement {
  0% {
    background-color: yellow;
    left: 10%;
    top: 15%;
  }
  25% {
    background-color: rgb(143, 89, 12);
    left: 90%;
    top: 100%;
  }
  50% {
    background-color: rgb(17, 52, 140);
    left: 80%;
    top: 20%;
  }
  75% {
    background-color: rgb(233, 96, 178);
    down: 70%;
    top: 50%;
  }
  100% {
    background-color: rgb(14, 171, 51);
    left: 0%;
    top: 0%;
  }
}

@keyframes movement {
  0% {
    background-color: yellow;
    left: 10%;
    top: 15%;
  }
  25% {
    background-color: rgb(143, 89, 12);
    left: 90%;
    top: 100%;
  }
  50% {
    background-color: rgb(17, 52, 140);
    left: 80%;
    top: 20%;
  }
  75% {
    background-color: rgb(233, 96, 178);
    down: 70%;
    top: 50%;
  }
  100% {
    background-color: rgb(14, 171, 51);
    left: 0%;
    top: 0%;
  }
}/*# sourceMappingURL=animation.css.map */