body {
    background-color: black;
}

/* Console coloring */
.wumpus-console,
.wumpus-console input[type="text"] {
    background-color: black;
    color: white;
    font: 1rem Inconsolata, monospace;
}

/* Strip input decoration */
.wumpus-console input[type="text"] {
    outline: none;
    border: 0;
    padding: 0;
}

/* Fit console lines */
.wumpus-console .content p {
    margin: 0;
    overflow-wrap: break-word;
    white-space-collapse: preserve;
}

/* Spacing at bottom */
.wumpus-console .spacer {
    height: 1em;
    clear: both;
}