/* styles.css */

/* Centering the main page header */
h1 {
    text-align: center;
}

/* Centering the site navigation */
nav {
    text-align: center;
}

/* Centering the footer information */
footer {
    text-align: center;
}

/* Body rule */
body {
    background-color: #f0f0f0; /* Example background color */
    color: #333; /* Example font color */
    font-family: 'Times New Roman', Times, serif; /* Example font family */
    margin: 100px; /* 10 pixel margin */
}