* {
  padding: 0;
  margin: 0;
}
body {
}
@keyframes bganimation {
  0% { background: #f79533; }
  15% { background: #f37055; }
  50% { background: #ef4e7b; }
  75% { background: #a166ab; }
  100% { background: #5073b8; }
}

@-webkit-keyframes bganimation {
  0% { background: #f79533; }
  15% { background: #f37055; }
  50% { background: #ef4e7b; }
  75% { background: #a166ab; }
  100% { background: #5073b8; }
}
.animatedbg-outer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.bg-animated li {
    position: absolute;
    border-radius: 24px;
    list-style: none;
    display: block;
    width: 40px;
    height: 40px;
    background: #f79533;
    bottom: 50px;
    animation: square 25s infinite;
    -webkit-animation: square 25s infinite;
    transition-timing-function: linear;
    -webkit-transition-timing-function: linear;
    opacity: 0;
    filter: blur(8px);
}

.bg-animated li:nth-child(1) {
    left: 4%;
    border-radius: 50%;
    background: transparent;
    border: 4px solid #f79533;
}
.bg-animated li:nth-child(2) {
    left: 8%;
    width: 60px;
    height: 60px;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    -webkit-animation-duration: 15s;
            animation-duration: 15s;
}
.bg-animated li:nth-child(3) {
    left: 20%;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 4s;
            animation-delay: 4s;
}
.bg-animated li:nth-child(4) {
    left: 45%;
    width: 75px;
    height: 75px;
    -webkit-animation-duration: 20s;
            animation-duration: 20s;
}

.bg-animated li:nth-child(5) {
    left: 75%;
    background: transparent;
    border:4px solid #1098ad;
}

.bg-animated li:nth-child(6) {
    left: 90%;
    width: 80px;
    height: 80px;
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
    border-radius: 50%;
    background: transparent;
    border: 4px solid #f37055;        
}
.bg-animated li:nth-child(7) {
    left: 35%;
    width: 60px;
    height: 60px;
    -webkit-animation-delay: 7s;
            animation-delay: 7s;
    background: transparent;
    border: 4px solid #ef4e7b;        
}
.bg-animated li:nth-child(8) {
    left: 60%;
    width: 40px;
    height: 40px;
    -webkit-animation-delay: 15s;
            animation-delay: 15s;
    -webkit-animation-duration: 40s;
            animation-duration: 40s;     
}
.bg-animated li:nth-child(9) {
    left: 35%;
    width: 80px;
    height: 80px;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    -webkit-animation-duration: 40s;
            animation-duration: 40s;  
    border-radius: 50%;          
    background: transparent;
    border: 4px solid #a166ab;        
}

.bg-animated li:nth-child(10) {
    left: 95%;
    width: 60px;
    height: 60px;
    -webkit-animation-delay: 10s;
            animation-delay: 10s;        
}

@keyframes square {
  0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
              opacity: 0;
  }
  50% {
      opacity: 1;
  }
  100% {
        -webkit-transform: translateY(-700px) rotate(600deg);
              transform: translateY(-700px) rotate(600deg);
              opacity: 0;
  }
}
@-webkit-keyframes square {
 0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
              opacity: 0;
  }
  50% {
      opacity: 1;
  }
  100% {
        -webkit-transform: translateY(-700px) rotate(600deg);
              transform: translateY(-700px) rotate(600deg);
              opacity: 0;
  }
}