/* Global Styles */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
}

/* Terminal Container */
.terminal {
    width: 80%;
    max-width: 800px;
    background-color: #111;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3); /* Reduced glare */
    border: 2px solid #00ff00;
}

/* Terminal Output Text */
.output {
    font-size: 20px;
    white-space: pre-wrap; /* Preserves whitespace formatting */
}

/* Special color for the word "Terminal" */
.terminal-highlight {
    color: #ffdf00; /* Yellowish color for "Terminal" */
}

/* Blinking Cursor */
.cursor {
    font-weight: bold;
    color: #00ff00;
    opacity: 1;
    animation: blink 1s infinite;
}

/* Cursor Blink Animation */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
