/* styles.css */

/* Center the main page header (h1) */
h1 {
    text-align: center;
}

/* Center the site navigation */
nav {
    text-align: center;
    margin: 15px 0;
}

/* Center the footer information */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

/* Body styling */
body {
    background-color: #f5f5f5; /* light gray background */
    color: #222; /* dark text color */
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px;
}

/* Optional: make images and main content neat */
main {
    text-align: center;
    padding: 10px;
}

img {
    margin: 10px;
    border-radius: 8px;
}
