
/* canvas {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    box-shadow: rgb(0 0 0 / 10%) 0 0 16px 16px
} */
/*  #unity-canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-interpolation-mode: nearest-neighbor;
    -webkit-transform: scale3d(1, 1, 1);
    z-index: 1;
} */
html, body {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
}
.fullscreen {
    background: #242424;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}
#banner-container {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 90px;
}
#loading-overlay {
    font-size: 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#icon {
    max-width: 100px;
    border-radius: 10px;
    margin-bottom: 20px;
}
#progress-bar {
    border-radius: 5px;
    width: 90%;
    max-width: 250px;
    height: 20px;
    background: #181818;
    padding: 5px;
}
#progress-bar-fill {
    border-radius: 3px;
    width: 0%;
    height: 100%;
    background: #9747FF;
}