body {
    background-color: #000; /* Black background as requested */
    color: #EEE;            /* Light grey/off-white text for readability */
    
    /* Font and layout for simple readability */
    font-family: 'IBM Plex Mono', monospace; 
    line-height: 1.6;

    /* Centers content and prevents it from stretching too wide */
    max-width: 700px;
    margin: 40px auto; /* 40px top/bottom, auto left/right */
    padding: 0 20px;   /* 20px of space on the sides */
}

/* --- Links --- */

a:link {
    color: #9bf; /* Light blue for unvisited links */
    text-decoration: none;
}

a:visited {
    color: #d9f; /* Light purple for visited links */
}

a:hover {
    color: #FFF;  /* Pure white on hover */
    text-decoration: underline;
}

/* --- Headings --- */

h1, h2 {
    color: #FFF; /* Makes headings slightly brighter */
}