body {
    background-color: black;
    color: white;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
#console {
    width: 90%;
    max-width: 800px;
    height: 90%;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
#output {
    overflow-y: auto;
    flex-grow: 1;
    scrollbar-width: none;
    padding: 10px;
}
#output::-webkit-scrollbar {
    width: 0;
}
#input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 8px;
    background-color: black;
}
.cmd-prompt {
    margin-right: 5px;
}
#input, #litepaper-response {
    background: none;
    border: none;
    color: white;
    outline: none;
    font-family: inherit;
    font-size: 1em;
    width: 100%;
    caret-color: white;
    padding: 0;
}
#litepaper-section {
    display: none;
    flex-direction: column;
    padding: 10px;
}
footer {
    color: grey;
    font-size: 0.8em;
    padding: 10px;
}