html {
    overflow: hidden;
    font-family: Roboto, Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;

    /* Disable selection */
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    user-select: none;
}

#gs-canvas {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    touch-action: none;
}

#error-message {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 8px 12px;
    color: white;
    background-color: #256173;
    font-size: 16px;
    user-select: text;
    visibility: hidden;
}
.warning {
    background-color: rgb(198, 144, 43) !important;
}
.error {
    background-color: rgb(142, 34, 34) !important;
}
.show {
    visibility: visible !important;
}

.progress-wrap {
    position: fixed;
    left: 50%;
    top: 5%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    text-align: center;
}
.progress-bytes {
    display: block;
    color: #fff;
    padding: 8px;
}
.progress-bar {
    /*background-color: #fff;*/
    border: 1px solid #fff;
    border-radius: 7px;
    padding: 2px;
    width: 180px;
}
.progress-value {
    display: block;
    height: 8px;
    width: 0%;
    background-color: #fff;
    border-radius: 4px;
    /*transition: width 100ms ease-in-out;*/
}

.luma-logo {
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 1000000000;
    width: 70px;
    height: 70px;
}
