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;
    padding: 0rem 2rem;
    transition: all .5s;
}

#nav ul li a:hover {
    background-color: rgb(104, 121,89);
    color:rgb(249, 248, 242);
}
/* 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: 20rem;
    object-fit: cover;
}

#title {
    background-color: rgb(104, 121,89);
    width: 25rem;
    border-bottom: .5rem solid rgb(56, 68, 48);
    position: absolute;
    top: 16rem;
    text-align: center;
    padding: 2rem 0rem 1.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: 12rem auto 5rem auto;
    max-width: 70%;
}

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 {
    text-transform: uppercase;
    color: rgb(249, 248, 242);
    font-size: .8rem;
}

footer ul {
    list-style: none;
    font-size: .8rem;
}

div.content {
    width: 70%;
    margin: 6rem auto;
}

#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: 10rem;
}

#periods ul li h4 {
    padding: .5rem;
}

h4 {
    color: rgb(104, 121,89);
}