body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
    color: #005c8c;
}

header {
    background-color: #005c8c;
    padding: 10px 0; /* Adjust vertical padding as needed */
    text-align: center; /* This centers the container div */
}

.header-container {
    display: inline-block;
    max-width: 880px;
    width: 100%;
    text-align: left; /* Aligns the content to the left */
}

header img {
    height: 75px; /* Adjust if your logo has a different height */
    vertical-align: middle;
}


.subhead-title h2 {
    line-height: 1.5;
    color: white;
}

.subhead {
    position: relative;
    text-align: center;
}

.subhead-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%; /* Adjust as needed */
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5); /* Optional: Adds a semi-transparent background */
}

.subhead img {
    width: 100%;
    height: auto;
}

main .content {
    padding: 20px;
    text-align: center;
}

.email-link {
    display: inline-block;
    background-color: #CBAD7D;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.email-link:hover {
    background-color: darken(#CBAD7D, 10%);
}

footer {
    background-color: rgb(142, 142, 142);
    color: white;
    padding: 20px;
    text-align: center;
}

@media (max-width: 880px) {
	.subhead-title {
		position: absolute;
		top: 0;
		left: 5%;
		right: 5%;
		max-width: 90%; /* Adjust as needed */
		padding: 10px;
		background-color: rgba(0, 0, 0, 0.2); /* Optional: Adds a semi-transparent background */
		transform: translate(0, 0);
	}
	.subhead-title h2 {
		font-size: 16px;
		line-height: 1;
	}
}
