body {
    margin: 0;
    background: #000;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    height: calc(100vh - 200px);
    overflow: auto;
}

#terminal {
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #111111;
}

.input-line {
    display: flex;
    align-items: center;
}

.prompt {
    margin-right: 10px;
    color: #0f0;
}

input#commandInput {
    background: none;
    border: none;
    color: #00ff00;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    width: 100%;
}

.line {
    margin: 5px 0;
}

.line a {
    color: #00ff00;
    text-decoration: underline;
}

.line a:hover {
    text-decoration: none;
}

.headline {
    text-align: center;
    font-family: "VT323", monospace;
    font-weight: 400;
    font-style: normal;
}

header {
    height: 150px;
    padding: 20px;
}