html, body {
    width: 100%;
    height: 100%;
    overflow: visible;
    padding: 0;
    margin: 0;
    background: #5039A0;
}

canvas {
    display: block;
}

#unity-container {
    background: transparent !important;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    image-rendering: pixelated;
}

#unity-canvas {
    width: 100%;
    height: 100%;
    background: url('logo.png') no-repeat center / cover;
    position: absolute;
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 80%;
    transform: translate(-50%, 0);
    display: block;
}

#unity-progress-bar-frame {
    width: 256px;
    height: 32px;
    background-image: url('progress-bar-frame.png');
    background-repeat: no-repeat;
    background-position: center;
}

#unity-progress-bar-empty {
    width: 256px;
    height: 32px;
    background-image: url('progress-bar-empty.png');
    background-repeat: no-repeat;
    background-position: center;
}

#unity-progress-bar-full {
    width: 256px;
    height: 32px;
    background-image: url('progress-bar-full.png');
    background-repeat: no-repeat;
    background-position: left center;
}

/* dummy */
#appVersion {
    color: white;
    position: absolute;
    top: 98%;
    margin-left: 50%;
    width: 128px;
    height: 32px;
    z-index: 1;
    transform: translate(-50%);
    text-align: center;
}

#button-grid {
    width: 100%;
    height: 10%;
    position: absolute;
    z-index: 1;
    top: 88%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    gap: 32px
}

.dummy-button {
    font-size: 22px;
    width: 100%;
}
