/* Set the main page to look like a terminal */
body {
    background-color: #000000; /* Black background */
    color: #00FF00;            /* Bright green text */
    font-family: 'Courier New', Courier, monospace; /* Monospaced font */
    font-size: 16px;
    line-height: 1.5;
    padding: 20px;
}

/* Style the "prompt" symbol ($) */
.prompt {
    color: #888888; /* Gray color for the prompt symbol */
    margin-right: 10px;
}

/* Remove default margins from paragraphs */
p {
    margin: 0;
}

/* Create a blinking cursor effect */
.cursor {
    display: inline-block;
    background-color: #00FF00; /* Cursor color */
    width: 10px; /* Cursor width */
    height: 1.2em; /* Cursor height based on font size */
    animation: blink 1s step-end infinite;
    margin-left: 5px;
    position: relative;
    top: 3px;
}

/* Blinking animation */
@keyframes blink {
    from, to {
        background-color: transparent;
    }
    50% {
        background-color: #00FF00; /* Match text color */
    }
}
