body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #1e1e1e;
    font-family: "Menlo", "Monaco", "Courier New", monospace;
    color: #bdc4bb;
    overflow: hidden;
}
#terminal {
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}
#input-line {
    display: none;
    align-items: center;
}
#prompt {
    margin-right: 10px;
}
#command-input {
    background: transparent;
    border: none;
    color: #bdc4bb;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    width: 100%;
}
.output-line {
    white-space: pre-wrap;
    word-wrap: break-word;
}
