/* Basic Setup */
body {
    background-color: #000;
    color: #00FF41; /* Bright Green */
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    padding: 20px;
}

/* Terminal Window */
.terminal {
    width: 100%;
    max-width: 800px;
    margin: auto;
}

/* Remove default margins from paragraphs */
p {
    margin: 0;
    white-space: pre-wrap; /* Preserves whitespace */
    word-wrap: break-word; /* Breaks long words */
}

/* Style the prompt part of the line */
.prompt {
    color: #87d7af; /* A lighter, different green for the prompt */
}

/* Blinking Cursor */
.cursor {
    display: inline-block;
    width: 10px;
    height: 1.2em; /* Match line height */
    background-color: #00FF41;
    animation: blink 1s step-end infinite;
    vertical-align: bottom; /* Aligns cursor with the text baseline */
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}


/* Link Styling */
a {
    color: #00FF41; /* Match the main text color */
    text-decoration: underline;
}

a:hover, a:focus {
    color: #87d7af; /* Lighter green on hover/focus for interactivity */
    outline: none; /* Remove default focus outline */
}