*{
    box-sizing: border-box;
    margin:0;
    font-family: 'Lato', sans-serif;
}

.menu{
    background-color: rgb(255, 255, 255);
    padding: 0 50px 0 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    -webkit-box-shadow: 0px -4px 15px 1px rgba(0,0,0,0.61); 
    box-shadow: 0px -4px 15px 1px rgba(0,0,0,0.61);
}

.menu-items{
    display: flex;
    height: 100%;
}

.logo a img{
    width: 130px;
}

.menu-item{
    display: flex;
    width: max-content;
    height: 100%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 20px;
}

a{
    text-decoration: none;
    color: rgb(55, 55, 55);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

.menu-item:hover{
    border-bottom: 5px solid lightgray;
    border-top: 5px solid transparent;
}

.container{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px 0 150px 0;
    flex-direction: column;
    align-items: center;
}

.main-body{
    /* background-color: rgb(250, 250, 250); */
    width: 80%;
}

footer{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0px -4px 15px 1px rgba(0,0,0,0.31); 
    box-shadow: 0px -4px 15px 1px rgba(0,0,0,0.31);
    height: 50px;
    bottom: 0;
    position: fixed;
    background-color: rgb(55, 55, 55);
}

footer>a{
    height: 100%;
}

.underline, p>a, section>a{
    text-decoration: underline;
}

.underline a:hover, p>a:hover, section>a:hover{
    color: rgb(84, 165, 26)
}

.img-container{
    width: 100%;
}

.footer-item{
    color: rgb(255, 255, 255);
    display: flex;
    width: max-content;
    height: 100%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 20px;
    height: 100%;
}

.footer-item:hover{
    background-color: rgb(255, 255, 255);
    color: rgb(55, 55, 55);
}

p, li, section, th, td{
    margin: 20px 0;
    text-align: justify;
    font-size: 20px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    color: rgb(95, 111, 129);
    font-weight: 100;
}

h1{
    margin:20px 0;
    text-transform: uppercase;
    text-align: center;
}


h2, h3, h4{
    margin:50px 0 20px 0;
    color: rgb(95, 111, 129);
    text-transform: uppercase;

}

.numeric-list{
    list-style: decimal;
}

section{
    background-color: rgb(208, 209, 211);
    color: rgb(55, 55, 55);
    padding: 50px 100px;
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.55);
-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.55);
-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.55);
}

.subtitle{
    font-size: 16px;
}

table,th, td{
    border: 1px solid rgb(208, 209, 211);
    border-collapse: collapse;
    padding: 10px;
    min-width: 300px;
}

th{
    font-weight: 700;
}

tr>td:first-of-type{
    font-weight: 700;
}

.cite{
    font-style: italic;
}