body {
    font-family: 'Times New Roman', Times, serif, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
}

table {
    width: 85%;
    margin: 10px auto;
    border-collapse: collapse;
}

.banner {
    background-image: url('banner1.webp');
    background-size: cover;  /* Ensure the image covers the entire cell */
    background-position: center;  /* Center the image */
    width: 100%;
    height: 700px;  /* Adjust as needed */
    color: white;  /* Make text stand out */
    text-align: center;  /* Center the text horizontally */
    vertical-align: middle;  /* Center the text vertically */
}

.banner h1 {
    margin: 0;  /* Remove default margin */
    padding: 60px 0;  /* Adjust padding to center the text vertically */
    font-size: 3em;  /* Adjust the font size */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);  /* Add shadow for better readability */
}

.nav td {
    background-color: #FDA172;
    color: black;
    text-align: center;
    padding: 10px;
}

.nav a {
    color: black;
    text-decoration: none;
    display: block;
}

.nav a:hover {
    background-color: #555;
}

.content td {
    background-color: white;
    padding: 30px;
	border: 1px solid black;
}

.footer td {
    background-color: #FDA172;
    color: black;
    text-align: center;
    font-size: 0.8em;
    padding: 15px;
}