.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    width: 100%;
}

.loading__dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background-color: var(--color-dark);
    border-radius: 50%;
    animation: loading 0.6s infinite;
}

.loading__dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading__dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loading {
    0%, 80%, 100% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.5);
    }
}