/* Apply styles to the entire page */
body {
    font-family: "Times New Roman", serif;
    color: blue;
    background-color: white;
    margin: 0;
    padding: 0;
}

/* Style the navigation menu */
ul {
    background-color: #f0f0f0; /* Light gray background for contrast */
    padding: 10px;
    list-style-type: none;
    text-align: center;
}

ul li {
    display: inline;
    margin-right: 15px;
}

ul li a {
    text-decoration: none;
    color: blue; /* Ensuring links match the text color */
    font-weight: bold;
}

/* Add borders */
h1, h2 {
    border-bottom: 2px solid black;
    padding-bottom: 5px;
}

img {
    border: 3px solid black;
    max-width: 100%;
    height: auto;
}

/* Style the footer text */
#email_page_author, #reference {
    font-style: italic;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
}
