/* Style for the body tag */
body {
    background-color: #f9f9f9; /* Light gray background */
    color: #333; /* Dark text color */
    font-family: Arial, sans-serif; /* Font family for all text */
    margin: 10px; /* 10-pixel margin for the entire page */
}

/* Centering the main header (h1 tag) */
h1 {
    text-align: center; /* Centers the text horizontally */
    font-size: 2em; /* Optional: Adjust font size for prominence */
}

/* Centering the site navigation (nav tag) */
nav {
    text-align: center; /* Centers the navigation bar */
    margin: 15px 0; /* Adds vertical spacing above and below the navigation */
}

main {
    text-align: center; /* Centers the footer content */
    margin-top: 20px; /* Adds space above the footer */
}

/* Centering the footer (footer tag) */
footer {
    text-align: center; /* Centers the footer content */
    margin-top: 20px; /* Adds space above the footer */
}

