body {
    font-family: "book antiqua", serif;
    font-size: 18px;
    border-radius: 5px;
}

/* HEADER */
header {
    /* display: flex;
    flex-direction: row; */
    margin-top: 0px;
    text-align: center;
    line-height: 1.3;
    font-variant: small-caps;
    background-image: url(../resources/header_title_wide.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: white;
}

.header_text {
    height: 100%;
    background-color: #333333e0;
    padding: 100px;
    padding-top: 200px;
}
h1 {
    display: none;
 /*    text-align: center;
    font-size: 36px;
    font-weight: bold; */
    /* margin: 50px; */
}
/* h1 span {
    font-variant: normal;
    font-weight: normal;
    font-style: italic;
    font-size: 32px;
    line-height: 0.9;
} */
h2 {
    font-size: 32px;
}
h3 {
    font-size: 28px;
}

nav {
    background-color: teal;
    margin: 0;
    border-top: 10px solid silver;
    width: 100%;
    z-index: 5;
}
ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style-type: none;
    margin-right: 20px;
    flex-wrap: wrap;
}
li {
    font-variant: small-caps;
}
li a {
    display: block;
    color: white;
    text-align: center;
    font-size: 20px;
    padding: 5px 30px;
    text-decoration: none;
    cursor: pointer;
    border-bottom-right-radius: 0px;
    border-right: 3px double white;
    margin: 15px 0px;
}
li a:hover {
    color: #333333; 
    cursor: pointer;
}
.fixed_nav {
    position: fixed;
    display: flex;
    margin-top: 0;
    justify-content: space-between;
}
.fixed_nav p {
    color: white;
    font-size: 20px;
    padding: 20px;
}

hr {
    color: #333333;
    width: 250px;
    margin-top: 30px;
    margin-bottom: 30px;
}

footer {
    background-color:teal;
    padding-top: 70px;
}

footer p {
    color: white;
    text-align: center;
    line-height: 1.3;
    font-size: 24px;
    margin-bottom: 30px;
}
.footer_bottom {
    background: #333333;
    /*height:80px;*/
}
.footer_bottom p {
    /* padding-top: 30px; */
    padding: 10px;
    font-size: 16px;
    font-family: Nunito, sans-serif;
}
/*
.footer_bottom img {
    width: 40px;
    height: auto;
    position: relative;
    bottom: -10px;
}
*/
footer hr {
    margin-top: 30px;
    margin-bottom: 30px;
}

#container {
    margin: 80px 250px;
    width: 65%;
    min-height: 500px;
}
#container p {
    color: #333333;
    line-height: 1.4;
    font-family: 'Nunito', sans-serif;
    margin: 20px 0;
}
#container h3 {
    margin: 40px;
    color: teal;
    font-size: 32px;
    font-weight: bold;
}
#container h4 {
    color: #333333;
    line-height: 1.5;
    font-family: 'Nunito', sans-serif;
    padding: 30px 0;
    font-weight: bold;
    font-size: 24px;
    color: teal;
}
#container a {
    color: teal;
    font-weight: bold;
}
#container a:hover {
    color: #BFDFDF;  
}
cite {
    font-style: italic;
}
b {
    font-weight: bold;
}
.svg {
    width: 100px;
    position: relative;
    float: left;
    margin-top: 50px;
    margin-right: 50px;
    margin-bottom: 50px;
}




table {
    margin: 50px;
}

table th, table td {
    color: #333333;
    line-height: 1.4;
    font-family: 'Nunito', sans-serif;
    margin: 20px 0;
    text-align: left;
    padding: 15px;
}

table th {
    font-weight: bold;
}
.contact {
    margin: 80px 50px;
}


/*MOBILE VERSION*/
/*Responsive layout */
@media screen and (max-width: 800px) {
    header {
        display: none;
    }
    .fixed_nav {
        position: relative;
    }
    #container {
        margin: 50px 5%;
        width: 90%;
    }
    .svg {
        width: 60px;
        margin-top: 0px;
        margin-right: 30px;
        margin-bottom: 30px;
    }
    table {
        margin: 2%;
    }
    table th, table td {
        margin: 5px 0;
        padding: 5px;
    }
}




