
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e7e3ff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-progress-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    width: 30vw;
}

.loading-progress-container > .loading-game-logo img {
    height: 10rem;
    margin: auto;
    align-self: center;
}

.loading-text {
    font-size: 1.25rem;
    font-family: 'Kenney Mini';
    color: #fff;
}

/* Progress bar (progress element) */
.progress {
    display: inline-block;
    width: 100%;
    height: 45px;
    margin: 35px;
    border-radius: 80px;
    background: #ffebeb;
}

.bar {
    border-radius: 80px;
    width: 0%;
    height: 100%;
    transition: width;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(.36,.55,.63,.48);
}

.shadow {
    /* 25 50 */
    box-shadow: 0px 45px 50px rgba(0, 0, 0, 0.25); 
}

.wiggle {
    background-color: #f63a3d;
    background-image: url('/img/skins/skin-5.png');
    background-position: center;
    background-size: contain;
}
