.busy-indicator {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: auto;
}

.busy-indicator div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #add8e6;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.busy-indicator div:nth-child(1) {
    left: 8px;
    animation: busy-indicator1 0.6s infinite;
    background: #00fdfb;
}

.busy-indicator div:nth-child(2) {
    left: 8px;
    animation: busy-indicator2 0.6s infinite;
    background: #00bbec;
}

.busy-indicator div:nth-child(3) {
    left: 32px;
    animation: busy-indicator2 0.6s infinite;
    background: #6587f0;
}

.busy-indicator div:nth-child(4) {
    left: 56px;
    animation: busy-indicator3 0.6s infinite;
    background: #c16dd4;
}

@keyframes busy-indicator1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes busy-indicator3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes busy-indicator2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

.logo {
    max-height: 250px;
    display: block;
    margin: auto;
}