 
body {
    background-color: #000;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
}

#terminal {
    width: 100%;
    height: 100vh;
    --color: #00ff00; /* Green text */
}

.terminal-prompt, .terminal-output div {
    font-family: 'Courier New', Courier, monospace;
}

/* Increase the terminal font size to be larger (approx. double) */
.terminal, .terminal * {
    font-size: 2rem !important;
    line-height: 1.25 !important;
}

/* CRT glow + subtle flicker */
.terminal, .terminal * {
    color: var(--color, #00ff00) !important;
}

.terminal .prompt, .terminal-output div, .terminal-output pre, .terminal-input, .terminal-prompt {
    text-shadow: 0 0 6px rgba(0,255,0,0.65), 0 0 14px rgba(0,255,0,0.2);
}

@keyframes mitchnet-flicker {
    0%   { opacity: 0.99; }
    50%  { opacity: 0.95; }
    100% { opacity: 0.99; }
}

.terminal {
    animation: mitchnet-flicker 3s infinite;
}

/* Slight inner glow for the terminal window */
#terminal {
    box-shadow: inset 0 0 30px rgba(0,255,0,0.03);
}
