html, body, #canvas {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    color: white;
    background-color: white;
    overflow: hidden;
    touch-action: none;
}

#canvas {
    display: block;

    position: fixed;
    top: 0;
    left: 0;
}

#canvas:focus {
    outline: none;
}

#status, #status-splash {
    top: 0;
    bottom: 0;
}

#status {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    visibility: hidden;
    
    height: 100dvh;
    filter: invert();
}

#status-splash {
    height: auto;
    max-width: 15%;
}

#status-splash.show-image--false {
    display: none;
}

#status-splash.fullsize--true {
    object-fit: contain;
}

#status-splash.use-filter--false {
    image-rendering: pixelated;
}

#status-progress, #status-notice {
    display: none;
}

#status-progress {
    /* top: 50%; */
    /* width: 25%; */
    margin: 0 auto;

    /* transform: translateY(15dvh); */
}

progress{
	accent-color: white
}

#status-notice {
    background-color: #5b3943;
    border-radius: 0.5rem;
    border: 1px solid #9b3943;
    color: #e0e0e0;
    font-family: 'Noto Sans', 'Droid Sans', Arial, sans-serif;
    line-height: 1.3;
    margin: 0 2rem;
    overflow: hidden;
    padding: 1rem;
    text-align: center;
    z-index: 1;
}

#status-splash-text {
    color: black;
    font-family: 'Noto Sans', 'Droid Sans', Arial, sans-serif;
    font-size: 2rem;
    text-align: center;
}