#splash_screen  {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-duration);
}

body.splash #splash_screen  {
    opacity: 1;
    pointer-events: all;
}

#splash_screen div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#splash_screen div img {
    width: 36rem; height: 20rem;
    max-width: 80vw; max-height: 80vh;
    object-fit: contain;
}

#splash_screen div button {
    width: 200px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 20px;
    border-radius: var(--btn-border-radius);
    border: 2px solid #fff;
    cursor: pointer;
    margin-top: 20px;
}

/* body.theme-light #splash_screen .logo,
body.theme-light #splash_screen div button {
    filter: invert(1);
} */