body {
    background-color: black;
    color: #00ff00;
    font-family: monospace;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#terminal {
    width: 90%;
    max-width: 800px;
    background-color: black;
    padding: 10px;
    border: 2px solid #00ff00;
    overflow-y: auto;
    height: 90vh;
}

#output {
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-y: auto;
}

#input-line {
    display: flex;
}

.prompt {
    color: #00ff00;
}

#input {
    background: black;
    border: none;
    color: #00ff00;
    font-family: monospace;
    width: 100%;
    outline: none;
}
