html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: url('background_image.jpg') no-repeat center center fixed;
    background-size: cover; 
}

#unity-container {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

#unity-container.unity-mobile {
    position: fixed;
    width: 100%;
    height: 100%;
}

#unity-canvas {
    display: block;
}

#unity-loading-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100%;
    text-align: center;
    z-index: 10;
    display: none;
}

#game-logo {
    width: max(55%, 500px);
    /* width: 85%;
    max-width: 800px; */
    height: 40%;
    max-height: 500px;
    aspect-ratio: 3 / 1;
    margin: 0 auto;
    background: url('logo.png') no-repeat center;
    background-size: contain;
}

#unity-progress-bar-empty {
    width: 70%;
    max-width: 500px;
    height: 18px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    background-color: black;
}

#unity-progress-bar-full {
    width: 0%;
    height: 100%;
    margin-top: 50px;
    background-color: white;
}


@media (max-width: 800px) {
    #game-logo {
        width: 80%;
    }

    #unity-progress-bar-empty {
        width: 70%;
    }
}

