@charset "UTF-8";

* {
    width:  100%;
    height: 100%;
    margin: 0;
    color: #FFF;
    background: #000;
    user-select: none;
}

#canvas-container   { background-color: #000; }
#textbox-container  { background-color: #114; }
#property-container { background-color: #316; }

#canvas-container {
    display: grid;
    place-items: center;
}
canvas {
    background-color: #FFF;
}
textarea {
    resize: vertical;
    width: 100%;
    height: 95%;
    padding: 0;
    border: none;
    outline: none;
    background: #228;
    font-size: 1.4rem;
    font-family: 'Roboto Mono', monospace;
}
#property-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: baseline;
    align-items: center;
}
.display-container {
    display: flex;
    flex-direction: column;
    width:  fit-content;
    height: fit-content;
    margin: .4rem 0;
    background: none;
}
.label, .display {
    display: flex;
    justify-content: center;
    width: auto;
    height: fit-content;
    padding: .2rem .6rem;
    border: solid #CCCC 1px;
    background: #0008;
    font-family: 'Roboto Mono', monospace;
}
.label {
    border-bottom: none;
    border-radius: 1rem 1rem 0 0;
    font-size: 1rem;
}
.display {
    border-top: none;
    border-radius: 0 0 1rem 1rem;
    font-size: 1.2rem;
}
.error-message {
    width: 100%;
    height: fit-content;
    padding: .2rem .4rem;
    margin-top: 1rem;
    color: #D44;
    background: #000;
    line-break: anywhere;
    font-size: 1rem;
    font-family: 'Roboto Mono', monospace;
}
.error-message:empty {
    padding: 0;
}