* {
    font-family: Arial, Helvetica, sans-serif;
}

*:not(h1) {
    font-size: 99%;
}

.image-container {
    display: flex;
    height: 3rem;
    padding: 1rem;
    justify-content: space-between
}

.image-container img {
    max-height: 100%;
}

.fb-icon {
    width: 2rem;
}

.menu-active {
    background-color: #0b509e;
}

nav ul {
    display: flex;
    align-items: center;
    height: 100%;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #001236;
}

nav li {
    float: left;
}

nav li a,
.dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav li a:hover,
.dropdown:hover .dropbtn {
    background-color: #0b509e;
}

nav li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

#main-container {
    margin: auto;
    width: 75%;
}

.title {
    text-align: center;
}

.table-first {
    border-collapse: collapse;
    border: 1px solid black;
}

.table-first td, .table-first th {
    border: 1px solid black;
    border-collapse: collapse;
}

img {
    max-width: 100%;
}

#youth-imgs {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#youth-imgs img {
    width: 50%;
    margin: 1rem;
}

#partner-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(248px, max-content));
    justify-content: center;
    align-items: center;
}

#main-content {
    text-align: center;
}

.partner {
    margin: 1rem;
    overflow: hidden;
    width: 15rem;
}

.partner:first-of-type{
    margin: 1rem auto;
}

#footer {
    display: flex;
    width: 100%;
    margin: 1rem;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#footer img {
    max-height: 5rem;
}


