body {
    background-color: #0d0d0d;
    color: #cccccc;
    font-family: 'Courier New', Courier, monospace;
    padding: 30px;
    margin: 0;
    overflow-x: hidden;
}

.massive-title {
    color: #00ff41; 
    font-size: 2.5vw; 
    line-height: 1.1;
    white-space: pre;
    margin-bottom: 40px;
    display: block;
    text-shadow: none;
}

.input-line {
    display: flex;
    font-size: 1.2rem;
    align-items: center;
}

/* This styles the text you are currently typing */
#command-input {
    background: transparent;
    border: none;
    color: #00ff41; /* Matches the green title */
    font-family: inherit;
    font-size: inherit;
    outline: none;
    width: 100%;
    caret-color: #00ff41; /* Makes the blinking cursor green too */
}

.prompt {
    margin-right: 10px;
    color: #00ff41;
    font-weight: bold;
}

#output p {
    margin: 5px 0;
    color: #00ff41; /* Makes previous command history green as well */
    opacity: 0.8;   /* Slightly dimmer so you can tell history from active input */
}