/* styles.css */
body {
    display:flex;
    flex-direction: column;
    min-height: 95vh; /* Ensure the body takes up at least the full viewport height */
    background-color: #f1f1f1;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
}

.banner {
    width: 60%;
    margin: 0 auto; /* Center the box horizontally */
    background-color: #f1f1f1;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner img {
    max-width: 50%;
    height: auto;
}

.center-content {
    flex-grow: 1; /* Allow the content to grow and push the footer down */
    margin: 0 auto 20 auto; /* Center horizontally */
    width: 60%; /* Set width to 60% of screen */
    padding: 20px; /* Add some padding for spacing */
    text-align: left;
    background-color: #f9f9f9; /* Optional background color */
    border: 1px solid #ddd; /* Optional border */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional box shadow */
    color: gray;
}


/* Style the links */
a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

a:hover {
    color: #333;
    text-decoration: underline;
}s

h1, h2, h3 {
    color: gray; /* White text color */
    text-align: center; /* Center the headers */
}

.disclaimer {
    font-style: italic;
    color: #777;
}

/*navigation*/
.horizontal-nav {
    display: flex;
    justify-content: space-between;
    /* Add other styling properties */
}

.horizontal-nav li {
    display: inline-block;
}

.horizontal-nav li a {
    display: block;
    color: #000;
    text-align: center;
    padding: 8px 16px;
    background-color: white;
    text-decoration: none;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
    position: relative; /* Add this line */
}

.horizontal-nav li a:hover::before {
    content: "";
    display: block;
    height: 2px;
    background-color: #65c0bb;
    /* Position the line below the links */
}

.horizontal-nav li a:active::before {
    content: "";
    display: block;
    height: 2px;
    background-color: #65c0bb;
    /* Position the line below the links */
}


#nav {
    width: 1100px;
    margin: 50px auto; /* Center the navigation bar horizontally */
    height: auto;
    font-weight: bold;
    font-size: 24px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: white;
    color: rgb(36, 60, 131);
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

li {
    display: inline-block;
}

li a {
    display: block;
    color: #000;
    text-align: center;
    padding: 8px 16px;
    background-color: white;
    text-decoration: none;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
}


.full-width-footer {
    background-color: #333; /* Gray background color */
    color: silver; /* Text color */
    text-align: center; /* Center the text */
    padding: 20px; /* Add some padding for spacing */
}