.dots {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.dot {
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.dot:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: #FBD301;
    position: absolute;
    left: 50%;
    transform: translateY(0) rotate(0deg);
    margin-left: -5px;
    margin-top: -5px;
    box-shadow: 3px 3px 10px rgba(10, 9, 13, 0.1);
}

@-webkit-keyframes dot-move {
    0% {transform: translateY(0);}
    18%,
    22% {transform: translateY(-30px);}
    40%,
    100% {transform: translateY(5px);}
}

@keyframes dot-move {
    0% {transform: translateY(0);}
    18%,
    22% {transform: translateY(-30px);}
    40%,
    100% {transform: translateY(0);}
}

@-webkit-keyframes dot-colors {
    0% {background-color: #FBD301;}
    25% {background-color: #FF3270;}
    50% {background-color: #208BF1;}
    75% {background-color: #AFE102;}
    100% {background-color: #FBD301;}
}

@keyframes dot-colors {
    0% {background-color: #FBD301;}
    25% {background-color: #FF3270;}
    50% {background-color: #208BF1;}
    75% {background-color: #AFE102;}
    100% {background-color: #FBD301;}
}

.dot:nth-child(5):before {
    z-index: 100;
    width: 15px;
    height: 15px;
    margin-left: -7.5px;
    margin-top: -7.5px;
    -webkit-animation: dot-colors 4s ease infinite;
    animation: dot-colors 4s ease infinite;
}

@-webkit-keyframes dot-rotate-1 {
    0% {transform: rotate(-105deg);}
    100% {transform: rotate(270deg);}
}

@keyframes dot-rotate-1 {
    0% {transform: rotate(-105deg);}
    100% {transform: rotate(270deg);}
}

.dot:nth-child(1) {
    -webkit-animation: dot-rotate-1 4s 0s linear infinite;
    animation: dot-rotate-1 4s 0s linear infinite;
}

.dot:nth-child(1):before {
    background-color: #FF3270;
    -webkit-animation: dot-move 4s 0s ease infinite;
    animation: dot-move 4s 0s ease infinite;
}

@-webkit-keyframes dot-rotate-2 {
    0% {transform: rotate(165deg);}
    100% {transform: rotate(540deg);}
}

@keyframes dot-rotate-2 {
    0% {transform: rotate(165deg);}
    100% {transform: rotate(540deg);}
}

.dot:nth-child(2) {
    -webkit-animation: dot-rotate-2 4s 1s linear infinite;
    animation: dot-rotate-2 4s 1s linear infinite;
}

.dot:nth-child(2):before {
    background-color: #208BF1;
    -webkit-animation: dot-move 4s 1s ease infinite;
    animation: dot-move 4s 1s ease infinite;
}

@-webkit-keyframes dot-rotate-3 {
    0% {transform: rotate(435deg);}
    100% {transform: rotate(810deg);}
}

@keyframes dot-rotate-3 {
    0% {transform: rotate(435deg);}
    100% {transform: rotate(810deg);}
}

.dot:nth-child(3) {
    -webkit-animation: dot-rotate-3 4s 2s linear infinite;
    animation: dot-rotate-3 4s 2s linear infinite;
}

.dot:nth-child(3):before {
    background-color: #AFE102;
    -webkit-animation: dot-move 4s 2s ease infinite;
    animation: dot-move 4s 2s ease infinite;
}

@-webkit-keyframes dot-rotate-4 {
    0% {transform: rotate(705deg);}
    100% {transform: rotate(1080deg);}
}

@keyframes dot-rotate-4 {
    0% {transform: rotate(705deg);}
    100% {transform: rotate(1080deg);}
}

.dot:nth-child(4) {
    -webkit-animation: dot-rotate-4 4s 3s linear infinite;
    animation: dot-rotate-4 4s 3s linear infinite;
}

.dot:nth-child(4):before {
    background-color: #FBD301;
    -webkit-animation: dot-move 4s 3s ease infinite;
    animation: dot-move 4s 3s ease infinite;
}


.blobs {
    transform: translateY(0);
    /* filter: url(#goo); */
    width: 100vw;
    height: 80vh;
    top: 0;
    left: 0;
    z-index: 999;
    position: fixed;
    overflow: hidden;
    border-radius: 70px;
    transform-style: preserve-3d;
  }
  .blobs .blob-center {
    transform: translateY(0);
    transform-style: preserve-3d;
    position: absolute;
    z-index: 1;
    background: #006aff;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform-origin: left top;
    transform: scale(0.9) translate(-50%, -50%);
    -webkit-animation: blob-grow linear 3.4s infinite;
            animation: blob-grow linear 3.4s infinite;
    border-radius: 50%;
    box-shadow: 0 0 20px 0 rgba(0, 106, 255, 0.3);
  }
  
  .blob {
    transform: translateY(0);
    position: absolute;
    background: #006aff;
    top: 50%;
    left: 50%;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    -webkit-animation: blobs ease-out 3.4s infinite;
            animation: blobs ease-out 3.4s infinite;
    transform: scale(0.9) translate(-50%, -50%);
    transform-origin: center top;
    opacity: 0;
  }
  .blob:nth-child(1) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .blob:nth-child(2) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .blob:nth-child(3) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .blob:nth-child(4) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .blob:nth-child(5) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  
  @-webkit-keyframes blobs {
    0% {opacity: 0;transform: scale(0) translate(calc(-330px - 50%), -50%);}
    1% {opacity: 1;}
    35%, 65% {background: #a530f8;opacity: 1;transform: scale(0.9) translate(-50%, -50%);}
    99% {background: #f83069;opacity: 1;}
    100% {opacity: 0;transform: scale(0) translate(calc(330px - 50%), -50%);}
  }
  
  @keyframes blobs {
    0% {opacity: 0;transform: scale(0) translate(calc(-330px - 50%), -50%);}
    1% {opacity: 1;background: #0ae220;}
    35%, 65% {background: #a530f8;opacity: 1;transform: scale(0.9) translate(-50%, -50%);}
    99% {background: #e01a1a;opacity: 1;}
    100% {opacity: 0;transform: scale(0) translate(calc(330px - 50%), -50%);}
  }
  @-webkit-keyframes blob-grow {
    0%, 39% {transform: scale(0) translate(-50%, -50%);}
    40%, 42% {transform: scale(1, 0.9) translate(-50%, -50%);}
    43%, 44% {transform: scale(1.2, 1.1) translate(-50%, -50%);}
    45%, 46% {transform: scale(1.3, 1.2) translate(-50%, -50%);}
    47%, 48% {transform: scale(1.4, 1.3) translate(-50%, -50%);}
    52% {transform: scale(1.5, 1.4) translate(-50%, -50%);}
    54% {transform: scale(1.7, 1.6) translate(-50%, -50%);}
    58% {transform: scale(1.8, 1.7) translate(-50%, -50%);}
    68%, 70% {transform: scale(1.7, 1.5) translate(-50%, -50%);}
    78% {transform: scale(1.6, 1.4) translate(-50%, -50%);}
    80%, 81% {transform: scale(1.5, 1.4) translate(-50%, -50%);}
    82%, 83% {transform: scale(1.4, 1.3) translate(-50%, -50%);}
    84%, 85% {transform: scale(1.3, 1.2) translate(-50%, -50%);}
    86%, 87% {transform: scale(1.2, 1.1) translate(-50%, -50%);}
    90%, 91% {transform: scale(1, 0.9) translate(-50%, -50%);}
    92%, 100% {transform: scale(0) translate(-50%, -50%);}
  }
  @keyframes blob-grow {
    0%, 39% {transform: scale(0) translate(-50%, -50%);}
    40%, 42% {transform: scale(1, 0.9) translate(-50%, -50%);}
    43%, 44% {transform: scale(1.2, 1.1) translate(-50%, -50%);}
    45%, 46% {transform: scale(1.3, 1.2) translate(-50%, -50%);}
    47%, 48% {transform: scale(1.4, 1.3) translate(-50%, -50%);}
    52% {transform: scale(1.5, 1.4) translate(-50%, -50%);}
    54% {transform: scale(1.7, 1.6) translate(-50%, -50%);}
    58% {transform: scale(1.8, 1.7) translate(-50%, -50%);}
    68%, 70% {transform: scale(1.7, 1.5) translate(-50%, -50%);}
    78% {transform: scale(1.6, 1.4) translate(-50%, -50%);}
    80%, 81% {transform: scale(1.5, 1.4) translate(-50%, -50%);}
    82%, 83% {transform: scale(1.4, 1.3) translate(-50%, -50%);}
    84%, 85% {transform: scale(1.3, 1.2) translate(-50%, -50%);}
    86%, 87% {transform: scale(1.2, 1.1) translate(-50%, -50%);}
    90%, 91% {transform: scale(1, 0.9) translate(-50%, -50%);}
    92%, 100% {transform: scale(0) translate(-50%, -50%);}
  }
