.blob {
    width: 20px;  
    height: 20px;
    background: black;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 10px);
    top: calc(50% - 10px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.blob-2 {
    animation: animate-to-2 1.5s infinite;
}

.blob-3 {
    animation: animate-to-3 1.5s infinite;
}

.blob-1 {
    animation: animate-to-1 1.5s infinite;
}

.blob-4 {
    animation: animate-to-4 1.5s infinite;
}

.blob-0 {
    animation: animate-to-0 1.5s infinite;
}

.blob-5 {
    animation: animate-to-5 1.5s infinite;
}

@keyframes animate-to-2 {
    25%,
    75% {
        transform: translateX(-15px) scale(0.75);
    }
    95% {
        transform: translateX(0px) scale(1);
    }
}

@keyframes animate-to-3 {
    25%,
    75% {
        transform: translateX(15px) scale(0.75);
    }
    95% {
        transform: translateX(0px) scale(1);
    }
}

@keyframes animate-to-1 {
    25% {
        transform: translateX(-15px) scale(0.75);
    }
    50%, 
    75% {
        transform: translateX(-45px) scale(0.6)
    }
    95% {
        transform: translateX(0px) scale(1);
    }
}

@keyframes animate-to-4 {
    25% {
        transform: translateX(15px) scale(0.75);
    }
    50%,
    75% {
        transform: translateX(45px) scale(0.6)
    }
    95% {
        transform: translateX(0px) scale(1);
    }
}

@keyframes animate-to-0 {
    25% {
        transform: translateX(-15px) scale(0.75);
    }
    50% {
        transform: translateX(-45px) scale(0.6)
    }
    75% {
        transform: translateX(-75px) scale(0.5)
    }
    95% {
        transform: translateX(0px) scale(1);
    }
}

@keyframes animate-to-5 {
    25% {
        transform: translateX(15px) scale(0.75);
    }
    50% {
        transform: translateX(45px) scale(0.6)
    }
    75% {
        transform: translateX(75px) scale(0.5)
    }
    95% {
        transform: translateX(0px) scale(1);
    }
}
 
