/* Global styles for the document */
body {
    background-color: #90C7E3;
    background: linear-gradient(to bottom, #FFFFFF, #90C7E3);
    color: #666666;
    font-family: Arial, Helvetica, sans-serif;
}

/* Styles for the wrapper id */
#wrapper {
    margin: 0 auto;
    width: 80%;
    background-color: #FFFFFF;
    min-width: 960px;
    max-width: 2048px;
    box-shadow: 3px 3px 3px #333333;
}

/* Restoring the sun banner background image in the header element */
header {
    background-color: #002171;
    color: #FFFFFF;
    background-image: url('sunset.jpg'); /* Restored: Background image */
    background-repeat: no-repeat;
    background-position: right;
    height: 60px;
    text-align: center;
    padding-top: 15px;
}

/* Styles for the h1 element */
h1 {
    margin-top: 0;
}

/* Styles for the main element */
main {
    padding: 20px;
    display: block;
}

/* Styles for the h2 element */
h2 {
    text-shadow: 1px 1px #CCCCCC;
}

/* Styles for the footer element */
footer {
    padding: 2em;
}

/* Styles for the hero images */
#homehero {
    background-size: cover; /* Use cover to fully cover the container */
}

/* Additional styles for the two-column layout */
.two-columns {
    display: flex;
    gap: 20px;
}

.left-column {
    flex: 1;
}

/* Style the vertical navigation links */
.left-column ul {
    list-style-type: none;
    padding: 0;
}

.left-column li {
    margin: 0;
    padding: 0;
}

.left-column a {
    text-decoration: none;
    color: #333; /* You can choose your desired color */
    display: block;
    padding: 5px 0;
}

.left-column a:hover {
    background-color: #90C7E3; /* Change the background color on hover */
    color: #FFFFFF; /* Change text color on hover */
}
.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   