/* General body styles */
body {
    background-color: black;  /* Black background */
    color: blue;         /* Blue text */
    font-family: Arial, sans-serif;  /* A clean, modern font */
}

/* Link styles */
a {
    color: lightblue;  /* Links will also be light blue */
    text-decoration: none; /* Removes underline */
}

a:hover {
    text-decoration: underline; /* Underline on hover for links */
}