body {
    background-color: black;
}

.terminal {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    font-family: "Cousine";
    background-color: black;
    color: white;
    padding: 10px;
    /* border: 3px solid #00FF00; */
}

.terminal pre {
    font-family: inherit;
}

.terminal .prompt {
    background-color: #0F0;
    color: black;
    margin-right: 5px;
    margin-top: 3px;
    padding-top: 2px;
}

.terminal .command, .terminal input {
   margin-top: 5px;
}

.terminal .line {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: horizontal;
}

.terminal input {
    background-color: inherit;
    color: inherit;
    font: inherit;
    flex-grow: 1;
    border: none;
}

.terminal input:focus {
    outline: none;
    box-shadow: none;
    appearance: none;
}

