body {
    background-color: #121212; /* dark gray background */
    color: #e0e0e0; /* light gray text */
    font-family: sans-serif;
    max-width: 600px;
    margin: 40px auto;
    line-height: 1.6;
}

h1 {
    font-size: 2em;
    margin-bottom: 1em;
    color: #ffffff; /* slightly brighter for headers */
}

ul {
    padding-left: 1em;
}

a {
    text-decoration: none;
    color: #1e90ff; /* soft blue for links */
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #9aafff; /* lighter blue for visited links */
}