
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background: black;
}
#preloader {
    position: fixed;
    inset: 0;
    background: #0f172a;
    background-image: url("/assets/images/bg_loader.webp");
    background-size: cover;
    color: #E4D7AA;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Stoke;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
#progress-bar {
    width: 260px;
    height: 10px;
    background: rgba(255,255,255,0.2);
    margin-top: 1rem;
    border-radius: 5px;
    overflow: hidden;
}
#progress {
    height: 100%;
    width: 0%;
    background: #FFE346;
    transition: width 0.3s;
    box-shadow: 0px 0px 1px 1px #FFE346;
}
#preloader-image {
    width: 240px;
    max-width: 40vw;
    height: 40vw;  
}
#preloader-image img {
    max-width: 100%;
}

#app-wrapper {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

#react-root {
    width: 324px;
    height: 576px;
    position: absolute;
    transform-origin: top left;
    top: 0;
}
#react-root > div{
    height: 100%;
}