:root {
    --logo-image: url();
    --status-image: url();
    --background-image: url();
}
body {
    touch-action: none;
    margin: 0;
    border: 0 none;
    padding: 0;
    text-align: center;
    background-color: #202124;
    background-image: var(--logo-image),radial-gradient(circle at 50% 25%,rgba(0, 0, 0, 0.5),rgba(32,33,36, 1),#0e0e0e),var(--background-image);
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-position: center 25%;
    background-size: 50vh,cover,cover; 
}
#canvas {
    display: block;
    margin: 0;
    color: #202124;
}
#canvas:focus {
    outline: none;
}
.godot {
    font-family: 'Noto Sans', 'Droid Sans', Arial, sans-serif;
    color: #e0e0e0;
    background-color: #3b3943;
    background-image: linear-gradient(to bottom, #403e48, #35333c);
    border: 1px solid #45434e;
    box-shadow: 0 0 1px 1px #2f2d35;
}
#status {
    position: absolute;
    left: 0;
    top: 25%;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: var(--status-image);
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-position: center 80%;
    background-size: 18vh; 
}
#status-progress {
    width: 40vh;
    height: 2%;
    background-color: #0f0f0fce;
    border: 1px solid #9f9f9f;
    padding: 0px;
    box-shadow: 0 0 #000000;
    border-radius: 20px;
    visibility: visible;
}
@media only screen and (orientation:portrait) {
    body {
        touch-action: none;
        margin: 0;
        border: 0 none;
        padding: 0;
        text-align: center;
        background-image: var(--logo-image),radial-gradient(circle at 50% 25%,rgba(0, 0, 0, 0.5),rgba(32,33,36, 1),#0e0e0e),var(--background-image);
        background-repeat: no-repeat;
        background-attachment: fixed; 
        background-position: center 25%;
        background-size: 46vh,cover,cover; 
    }
    #status {
        position: absolute;
        top: 25%;
        
    }
    #status-progress {
        width: 40vh;
    }
}
#status-progress-inner {
    height: 100%;
    width: 0;
    box-sizing: border-box;
    transition: width 0.5s linear;
    background-color: #00D4D9;/*LOADING_BAR INNER_COLOR*/
    background-image: linear-gradient(to right,rgba(1, 1, 1, 0.5),rgba(1, 1, 1, 0));
    box-shadow: 0 0 0 0 #ffffff;
    border : 2px solid #181818;
    border-radius: 20px;
}
#status-indeterminate {
    height: 42px;
    visibility: visible;
    position: relative;
}
#status-indeterminate > div {
    width: 0.5vh;
    height: 0;
    border-style: solid;
    border-width: 9px 3px 0 3px;
    border-color: #0f0f0f transparent transparent transparent;
    transform-origin: center 21px;
    position: absolute;
}
#status-indeterminate > div:nth-child(1) { transform: rotate( 22.5deg); }
#status-indeterminate > div:nth-child(2) { transform: rotate( 67.5deg); }
#status-indeterminate > div:nth-child(3) { transform: rotate(112.5deg); }
#status-indeterminate > div:nth-child(4) { transform: rotate(157.5deg); }
#status-indeterminate > div:nth-child(5) { transform: rotate(202.5deg); }
#status-indeterminate > div:nth-child(6) { transform: rotate(247.5deg); }
#status-indeterminate > div:nth-child(7) { transform: rotate(292.5deg); }
#status-indeterminate > div:nth-child(8) { transform: rotate(337.5deg); }
#status-notice {
    margin: 0 100px;
    line-height: 1.3;
    visibility: visible;
    padding: 4px 6px;
    visibility: visible;
}