html {
    margin: 0;
    padding: 0;
    height: 100%;
}
body {
    background-color: black;
    margin: 0;
    height: 100%;
    padding: 10px;
}
#container {
    height: 100%;
    width: 100%;
    position: relative;
    text-align: center;
}

* {
    box-sizing: border-box;
}

#canvas {
    /* Size of this canvas will be updated via JS */
}

#status_text {
    font-family: monospace;
    min-height: 1.5em;
    color: grey;
    text-shadow: 0px 0px 2px #000fff;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    transition: opacity 1300ms ease-in;
    white-space: pre-line;
}

#error_text {
    font-family: monospace;
    min-height: 1.5em;
    color: red;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    white-space: pre;
    text-shadow: 1px 1px 3px #ffffff;
}
