* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: lime;
    font-family: monospace;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

#input-container {
    display: flex;
    align-items: center;
}

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

#user-input::placeholder {
    color: lime;
}

.prompt {
    color: lime;
    font-family: monospace;
}