#gamebox {
    margin-bottom: 20px;
    width: 800px;
    height: 480px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;
}

#game-canvas {
    display: block;
    width: 800px !important;
    height: 480px !important;
}

#game-canvas:focus {
    outline: none;
}

#status,
#status-splash,
#status-progress {
    position: absolute;
    left: 0;
    right: 0;
}

#status,
#status-splash {
    top: 0;
    bottom: 0;
}

#status {
    background-color: #242424;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

#status-splash {
    max-height: 100%;
    max-width: 100%;
    margin: auto;
}

#status-splash.show-image--false {
    display: none;
}

#status-splash.fullsize--true {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

#status-splash.use-filter--false {
    image-rendering: pixelated;
}

#status-progress,
#status-notice,
#status-loading-text {
    display: none;
}

#status-loading-text {
    color: #e0e0e0;
    font-family: 'Noto Sans', 'Droid Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    z-index: 1;
}

#status-progress {
    bottom: 10%;
    width: 50%;
    margin: 0 auto;
}

#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;
}