* {
    padding: 0;
    margin: 0;
    text-align: center;
}

body {
    font-family: Arial, Times, "Times New Roman", serif;
    font-size: 16px;
}

ul, ol, li {
    list-style-position: inside;
}

p {
    text-align: left;
    margin: 1em 0;
}

a {
    text-decoration: none;
}

img {
    border: none;
    max-width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

/* Standard Page layout */

#page_container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: #1c5d1c;
    justify-content: left;
    align-items: baseline;
    gap:1.0em;
}
header img {
    background-color: white;
    height: 5em;
    margin: 1.0em;
    padding: 0.25em;
    border-radius: 0.5em;
}
header div {
    display: inline-block;
    font-size: 3.5em;
    color: white;
}

#middle_section {
    flex: 1;
    padding: 1em;
}

#middle_section li {
    text-align: left;
}

footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: #1c5d1c;
    color: white;
    justify-content: center;
    align-items: center;
    gap:0.5em;
}

footer img {
    margin: 0.5em;
}

footer div {
    /*border: red 2px solid;*/
    flex:0 0 0;
    display: inline-block;
    text-align: center;
}

footer .seal {
    width: 7em;
}

footer .info {
    min-width: 27em;
    max-width: 100%;
}

footer .info a {
    color: white;
    display: inline-block;
}

footer .socials {
    color: white;
    min-width: 12em;
    max-width: 100%;
}

footer .socials img {
    height: 2em;
}