* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    clear: both;
}

#loading-container {
    background-color: #1B1D22;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loading-container .loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#loading-container .bubble {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-image: linear-gradient(to right, rgba(101, 49, 224, 0.5), rgba(101, 49, 224, 1.0));
    margin: 0 5px;
    animation: bubbleAnimation 1.5s ease-in-out infinite;
}

@keyframes bubbleAnimation {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(2);
        opacity: 0.5;
    }
}
