/* styles.css */
body {
    background-color: black;
    color: green;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

#ascii-art {
    text-align: center;
    margin-bottom: 20px;
    white-space: pre;
}

#terminal {
    width: 80%;
    max-width: 800px;
    height: 60%;
    max-height: 600px;
    background-color: black;
    border: 2px solid green;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

#output {
    white-space: pre-wrap;
    margin-bottom: 10px;
}

#input-line {
    display: flex;
}

.prompt {
    margin-right: 10px;
}

#command-input {
    background-color: black;
    color: green;
    border: none;
    outline: none;
    flex-grow: 1;
}
