.background-image-div {
  opacity: 0.5;
  filter: blur(15vh);
  width: 100%;
  height: 100%;
  max-height: 1000px;
  position: absolute;
  z-index: -1;
  overflow: hidden;
}

.background-image-img {
  filter: blur(60px);
  max-height: 100vh;
  min-height: 90vh;
  width: 100%;
  opacity: 0.40;
  object-position: center;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #36393f 110%);
}

@keyframes fly {
  100% {
    transform: rotate(1turn) translate(25%) rotate(-1turn);
  }
}

@keyframes flyPlus {
  100% {
    transform: rotate(-1turn) translate(25%) rotate(1turn);
  }
}

@keyframes flyPlusPlus {
  100% {
    transform: rotate(-1turn) translate(25%) rotate(1turn);
  }
}

.base {
  position: absolute;
  opacity: 0.8;
}

.one {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  background-color: #3006da;
  left: -12%;
  top: -75%;
  z-index: 3;
  animation: fly 40s linear infinite;
  transform: rotate(0) translate(20%) rotate(0);
}

.two {
  border-radius: 100%;
  width: 112%;
  height: 112%;
  bottom: -20%;
  right: -25%;
  background-color: #c90862;
  animation: flyPlus 30s linear infinite;
  transform: rotate(0) translate(25%) rotate(0);
}

.three {
  border-radius: 100%;
  width: 82%;
  height: 82%;
  bottom: -18%;
  left: -25%;
  background-color: #6f1e51;
  animation: flyPlusPlus 20s linear infinite;
  transform: rotate(0) translate(25%) rotate(0);
}

