html, body {
    background: #1a202c;
}
#loading-layer {
    /* display: flex; */
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #1a202c;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: opacity 0.2s ease-out;
}

#loading-layer.hidden {
    opacity: 0;
    pointer-events: none;
}

#loading-progress {
    height: 1rem;
    width: 10rem;
    box-sizing: border-box;
}

#loading-progress-fill {
    width: 0;
    min-width: 1rem;
    height: 100%;
    background: #ffffff;
    transition: width 0.2s ease-out;
    border-radius: 0.5rem;
    box-shadow: 0 0 0.5rem #d5dce6;
}

body.christmas .logo-default {
    display: none;
}

.logo-christmas {
    display: none;
}

body.christmas .logo-christmas {
    display: unset;
}