/* Basic styles for the body */
body {
    font-family: sans-serif; /* Use a common sans-serif font */
    margin: 20px; /* Add some space around the content */
    background-color: #f4f4f4; /* Light grey background */
    color: #333; /* Dark grey text color */
    line-height: 1.6; /* Improve readability */
}

/* Style the main heading */
h1 {
    color: #0056b3; /* A shade of blue */
    text-align: center; /* Center the text */
    margin-bottom: 20px; /* Add space below the heading */
}

/* Style paragraphs */
p {
    margin-bottom: 15px; /* Add space below paragraphs */
}

/* Style the header and footer for distinction */
header, footer {
    background-color: #e2e2e2; /* Slightly darker grey */
    padding: 10px; /* Add some padding inside */
    text-align: center; /* Center text */
    margin-top: 20px; /* Add space above footer */
}

footer {
    font-size: 0.9em; /* Make footer text a bit smaller */
    color: #555; /* Darker grey for footer text */
}