html {
    background: #444;
}

#canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border: 0 none;
}

.visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.1s linear;
}

.hidden {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.25s, opacity 0.25s linear;
}

#statusTextDiv {
    overflow: auto;
    max-height: 40vh;
    color: #ccc;
    font-size: 18px;
}

#statusProgress {
    width: 100%;
}

#inputDiv {
    width: 65%;
    padding-left: 10px;
    padding-right: 20px;
}

#inputPrompt {
    color: #eee;
    font-size: 150%;
    margin-bottom: 1em;
    margin-top: 1em;
}

#inputText {
    width: 100%;
    font-size: 175%;
    padding: 5px;
    background: inherit;
    color: #eee;
}

#inputText:focus {
    color: #fff;
}

#ContextContainer {
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
}

#ContextContainer.shown {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 5px 0;
}

#ContextButton {
    text-decoration: none;
    color: #d3d3d3;
    font-size: xx-large;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    padding: 10px 10px;
    opacity: 0.75;
}

#ContextButton:focus {
    outline: 0;
    color: #fff;
    opacity: 1;
}

#ContextMenu a {
    text-decoration: none;
    color: #d3d3d3;
    background: #444;
    height: 48px;
    width: 250px;
    border-radius: 5px;
    border: 1px solid #d3d3d3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 5px;
    opacity: 1;
}

#ContextMenu a:hover {
    text-decoration: none;
    background: #666;
    color: #fff;
}

#presplash {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
