.div1 {
  z-index: 9;
  position: relative;
  top: 6em;
  left: 4em;
  width: 120px !important;
}

.div2 {
  position: absolute;
  top: 6em;
  left: 6em;
}

.div3 {
  z-index: 9;
  position: relative;
  top: 5em;
  left: 5em;
  width: 80px !important;
}

.div4 {
  position: absolute;
  right: 16em;
}
.div4:hover {
  cursor: pointer;
}

.div5 {
  position: relative;
  top: 1em;
  right: -40em;
  width: 80px !important;
}

.blobs {
  width: 280px;
  height: 280px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -150px;
  margin-top: -150px;
  border-radius: 100%;
  -webkit-animation: myturn linear 16s infinite;
  -moz-animation: myturn linear 16s infinite;
}
.blobs:after {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #334455;
  position: relative;
  display: block;
}
.blobs:before {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #112222;
  position: absolute;
  margin-top: -60px;
  display: block;
}

.blob {
  position: absolute;
  background: #009c9b;
}

.blob:nth-child(1) {
  top: -10px;
  left: -10px;
  width: 250px;
  height: 260px;
  background: #009c9b;
  border-radius: 100%;
  -webkit-animation: mytopdown linear 3s infinite;
  -moz-animation: mytopdown linear 3s infinite;
  animation: mytopdown linear 3s infinite;
}

.blob:nth-child(2) {
  top: 10px;
  left: 10px;
  background: #009c9b;
  width: 250px;
  height: 260px;
  border-radius: 100%;
  -webkit-animation: mytopleft linear 3s infinite;
  -moz-animation: mytopleft linear 3s infinite;
  animation: mytopleft linear 3s infinite;
}

.blob:nth-child(3) {
  top: 10px;
  left: -10px;
  background: #009c9b;
  width: 250px;
  height: 260px;
  border-radius: 100%;
  -webkit-animation: mytopright linear 3s infinite;
  -moz-animation: mytopright linear 3s infinite;
  animation: mytopright linear 3s infinite;
}

/* Mozila + Chrome */
@keyframes mytopdown {
  0% {
    top: 0px;
    transform: rotate(0deg) scale(1);
  }
  50% {
    top: 10px;
    transform: rotate(180deg) scale(1.04);
  }
  100% {
    top: 0px;
    transform: rotate(360deg) scale(1);
  }
}
@keyframes mytopleft {
  0% {
    top: 0px;
    transform: rotate(0deg) scale(1.05);
  }
  50% {
    top: 10px;
    transform: rotate(180deg) scale(1);
  }
  100% {
    top: 0px;
    transform: rotate(360deg) scale(1.05);
  }
}
@keyframes mytopright {
  0% {
    top: -10px;
    transform: rotate(0deg) scale(1);
  }
  50% {
    top: 0px;
    transform: rotate(180deg) scale(1.02);
  }
  100% {
    top: -10px;
    transform: rotate(360deg) scale();
  }
}
@-webkit-keyframes myturn {
  0% {
    -webkit-transform: rotate(0deg) skewX(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg) skewX(0deg);
  }
}/*# sourceMappingURL=style.css.map */