body {
    font-family: 'Lato', sans-serif;
    font-weight: 200;
    margin: 0;
    font-size: 16px;
}
/* header stuff here */
header {
    padding: 1rem 2vw;
    display: flex;
    align-items: flex-end;
}
header div {
    padding-left: 2vw;
}
header h1 {
    margin: 0;
    color: #54691f;
    font-size: 2rem;
    font-weight: 600;
}
header p {
    margin: 0;
    color: #3179AF;
    font-size: 1rem;
    letter-spacing: 3px;
    font-weight: 200;
}

/* PHONE NAV HERE */
@media only screen and (max-width: 600px) {
    nav ul {
        margin: 0;
        padding: 0 2vw;
        list-style-type: none;
        display: flex;
        flex-direction: column;
    }
    nav a {
        display: block;
        padding: 1.2rem;
        font-size: 1rem;
        text-decoration: none;
        color: #54691f;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
        border-bottom: solid 1px #aaa; 
    }
    nav .active a {
        background-color: #54691f;
        color: white;
    }
} /*end small screens*/

@media only screen and (min-width: 601px) {
    nav {
        background-color: #d3c1a1;
    }
    nav ul {
        margin: 0;
        padding: 0 2vw;
        list-style-type: none;
        display: flex;
    }
    nav a {
        display: block;
        padding: .8rem 1rem;
        font-size: 1rem;
        text-decoration: none;
        color: #111;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
        border-left: solid 1px rgba(0,0,0,0.2);
    }

    nav .active a {
        color: #54691f;
    }
    nav a:hover {
        color: #3179AF;
    } 
} /*end large screens*/



/* main stuff here */
main {
    padding: 1rem 2vw;
}

main h1 {
    color: #3179af;
    font-size: 2rem;
    margin: .5rem 0 .8rem 0;
    font-weight: 300;
}
main h2 {
    color: #8b5022;
    margin-bottom: .2rem;
    font-weight: 300;
}
main p {
    color: #333;
    margin: 0 0 .8rem 0;
    line-height: 140%;
    font-size: 1.2rem;
}
main a {
    color: #54691f;
    font-weight: 600;
    text-decoration: none;
}
main a:hover {
    color: #3179af;
    text-decoration: underline;
}
ul li {
    color: #8b5022;
    font-weight: 600;
    line-height: 135%;
}
.teamHero {
    width: 100%;
    margin: 0;
}
.teamHero img, .image-right img {
    width: 100%;
    height: auto;
}

.image-right {
    float: right;
    margin: 0 0 0 2vw;
    width: 33%;
}
.image-right figcaption {
    text-align: center;
    font-size: .8rem;
}
/*table junk*/
table.stuff{
    width: 100%;
    border-collapse: collapse;
}

table.stuff th{
    background-color: #3179AF;
    color: white;
    padding: .5rem 2vw;
    text-align: left;
}
table.stuff td{
    color: #54691f;
    padding: .4rem 2vw;
}
table.stuff tr:nth-child(odd){
    background-color: #f7f7f7;
}
table.stuff tr:hover{
    background-color: rgba(84,105,31,0.2);
}
/* footer stuff here */
footer {
    border-top: solid #895772 1px;
    text-align: center;
    color: #8b5022;
    font-size: .8rem;
    padding: 1rem 0;
    clear: both;
}
footer a {
    color: #8b5022;
}


/* footer stuff here */
main, footer {
    max-width: 64rem;
    margin: 0 auto;
}