body {
    background-color: black;
    color: white;
    font-family: "Menlo", courier;
    font-size: 12pt;
    height: 100vh;
    margin-bottom: 0;
    margin-top: 0;
}

a {
    color: white;
    text-decoration: none;
}

#container {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

#header {
    padding-top: 10px;
}

#console {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: start;
}

#cursor {
    background-color: #4b4c4c;
    width: 1ch;
}

#console-end {
    display: none;
    background-color: white;
    color: black;
}

.banner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#manpage {
    flex-grow: 1;
    overflow: auto; 
    min-height: 2em;
    height: 100vh;
}

.content p {
    margin-left: 4ch;
    margin-right: 2ch;
}

.content h2 {
    font-size: 13pt;
}

.options {
    margin-left: 4ch;
}

.options p, .command {
    margin-left: 8ch;
}

