body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#loading-container {
    text-align: center;
}

.loading-dots {
    display: inline-block;
    text-align: center;
    font-size: 24px;
}

.loading-dots div {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #3498db;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0;
    animation: loading 1.4s infinite;
}

@keyframes loading {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* CSS for the app logo */
#app-logo {
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.container {
    padding-top: 30px;
    /* background-color: rgb(18, 36, 234); */
}

.ball {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 20px;
    display: inline-block;
    position: relative;
    animation: jump 1s infinite;
}

.ball1 {
    background-color: #000000;
}

.ball2 {
    background-color: #000000;
    animation-delay: 0.15s;
}

.ball3 {
    background-color: #000000;
    animation-delay: 0.3s;
}

.ball4 {
    background-color: #000000;
    animation-delay: 0.45s;
}

.ball5 {
    background-color: #000000;
    animation-delay: 0.6s;
    margin-right: 20px;
}

@keyframes jump {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}