#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgb(0, 0, 0);

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;

    transition: opacity 0.6s ease;
}

#loading-logo {
    margin-bottom: 20px;
    animation: logoFade 1s ease;
}

@keyframes logoFade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

#loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    color: white;
    font-size: 12px;
}

.loading-bar {
    width: 800px;
    height: 30px;
    background: #333;
    margin-top: 20px;
    border: 3px solid rgb(129, 129, 129);

}

.loading-progress {
    width: 0%;
    height: 100%;
    background: white;
    border-radius: 5%;
    box-shadow:
        0 0 8px #E30B5C,
        0 0 16px #E30B5C,
        0 0 24px #E30B5C;
}