body {
    background-color: #2c2c2c; /* Dark grey background */
    color: #ffffff; /* White text */
    font-family: Arial, sans-serif; /* Optional: Choose a clean font for better readability */
    margin: 0;
    padding: 0;
}

a {
    color: #00aced; /* Light blue for links, for good contrast */
    text-decoration: none;
}

a:hover {
    color: #0084b4; /* Slightly darker blue for hover effect */
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff; /* Ensure headers are also white */
}

