
#main {
    text-align: center;
}

#terminal {
    width: 60em;
    height: 40em;
    margin: auto;
    text-align: left;
}

#terminal .terminal-output {
    width: 100%;
    height: 32em;
    overflow: scroll;
    overflow-x: hidden;
    background-color: black;
    font-family: monospace;
}

#terminal .terminal-output pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0;
    border: 0;
}

#terminal .terminal-output .regular-output {
    color: white;
}

#terminal .terminal-output .error-output {
    color: red;
}

#terminal .terminal-input {
    width: 100%;
    height: 8em;
}

