body {
    background-color: rgb(249, 248, 242);
    margin: 3.5rem 0px 0px 0px;
    padding: 0px;
    font-family: orpheuspro, serif;
}

#nav {
    background-color: rgb(249, 248, 242);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: right;
    z-index: 999;
}

#nav ul {
    list-style: none;
    z-index: 9999;
    margin: 0;
    padding: 0;
    display: flex;
}

#nav ul li a {
    color: rgb(104, 121,89);
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    width: 100px;
    padding: 0rem 2rem;
    transition: all .2s;
    text-align: center;
}

#nav ul li a:hover {
    font-weight: bold;
}
/* due to flexbox, the border added with the hover, moves all li items up, need to work on .05rem solid rgb(104, 121,89) */
/* add selected state */

#home {
    color: rgb(104, 121,89);
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    z-index: 9999;
    position: fixed;
    top: .75rem;
    left: 2rem;
    font-weight: bold;
}

#nav-shadow {
    background-color: rgb(234, 234, 225);
    position: fixed;
    top: 3rem;
    left: 0;
    width: 100%;
    height: .5rem;
    z-index: 999;
}
/* make this border instead */

#hero {
    width: 100%;
    height: 30rem;
    object-fit: cover;
}

#title {
    background-color: rgb(104, 121,89);
    width: 30rem;
    border-bottom: .5rem solid rgb(56, 68, 48);
    position: absolute;
    top: 24rem;
    text-align: center;
    padding: 3rem 0rem 2.5rem 0rem;
    font-size: 4rem;
    text-transform: uppercase;
    color: rgb(249, 248, 242);
    line-height: 4rem;
}

h2 {
    color: rgb(104, 121,89);
    font-size: 2rem;
    font-weight: lighter;
    border-bottom: .05rem solid;
}

#splash {
    display: flex;
    position: relative;
    justify-content: center;
}

#overview {
    margin: 16rem auto 8rem auto;
    max-width: 60%;
}

p {
    color: rgb(56, 68, 48);
}

footer {
    background-color: rgb(56, 68, 48);
    height: 8rem;
    color: rgb(234, 234, 225);
    font-weight: lighter;
    text-align: right;
    padding: 2rem 3rem 1rem 3rem;
}

h3 {
    color: rgb(249, 248, 242);
    font-size: .8rem;
}

h3 a{
    text-decoration: none;
    color: rgb(249, 248, 242);
    font-size: .8rem;
}

footer ul {
    list-style: none;
    font-size: .8rem;
}

div.content {
    width: 70%;
    margin: 6rem auto;
}

div.content p {
    padding: 0 1rem;
}

#periods ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    width: 100%;
    justify-content: center;
    padding: 0;
}

#periods ul li {
    border: .1rem solid rgb(234, 234, 225);
    margin: 1rem;
    width: 20rem;
    text-align: center;
}

h4 {
    color: rgb(104, 121,89);
    padding: .5rem 0 0 0;
    margin: 0;
    font-size: 1.2rem;
}

#periods ul li p {
    color: rgb(104, 121,89);
    font-size: .8rem;
    margin: 0;
}

#menu div ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    list-style: none;
}

#menu div ul li a{
    color: rgb(104, 121,89);
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    padding: .5rem;
}

button.hamburger {
        background-color: rgb(249, 248, 242);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: right;
        z-index: 999;
        border: 0;
}

button.hamburger i {
    padding-right: 1rem;
    color:rgb(104, 121,89);
    cursor: pointer;
}

#menu .links {
    display: none;
}

#menu.open .links {
    background-color: rgb(234, 234, 225);
    height: 9rem;
    display: block;
}

@media (max-width: 700px) {
    #nav {
        display: none;
    }
}

@media (min-width: 700px) {
    #menu {
        display: none;
    }
}