body {
    font-family: 'roboto','Helvetica Neue',Helvetica,sans-serif ;
    font-weight: 400;
    font-style: normal;
    padding: 0;
    margin: 0;
    background-color: rgb(255, 228, 196);
}

h1 {
    font-family: 'roboto','Helvetica Neue',Helvetica,sans-serif;
    font-weight: 900;
    font-style: normal;
    color: rgb(92 75 25);
    font-size: 2.5rem;
    margin: 1rem 0 3rem 0;
}

footer p {text-align: center;}

#logo {
    width: 4.375rem;
    height: auto;
    padding-bottom: 1.75rem;
}
header {
    background-color: rgb(95 75 25);
    padding: 1.875rem;
    height: 6.25rem;
    color: rgb(255 255 255);
    font-size: 2.25rem;
    font-weight: 900;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif ;
    font-style: normal;
}

footer {
    background-color: rgb(92 75 25);
    padding: 1.875rem;
    height: 6.25rem;
    color: rgb(255,255,255);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-top: 7.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}

nav ul li {
    display: inline;
    /* margin-left: 16px; */
    height: 44px; /* minimum tappable size */
    line-height: 44px; /* leading: vertically centers text (when one line) */
    flex: 1; /*allows list item to grown within flexbox */
    border: 1px solid red; 
    text-align: center; /* center text in tappable area */
    background-color: yellow;
    margin-left: 2px
}

a {text-decoration: none;}

main {
   /*  margin-left: 36px; */
   padding: 1rem;
}

header span {
    position: relative;
    top: -2.575rem;
    display: inline-block;
    width: inherit;
}

header {
    padding: 3.125rem;
}

img {
    max-width: 100%; /* responsive images */
    height: auto;
}

nav {
    border: 1px solid red;
    width: inherit;
    margin: 0rem auto;
    padding-right: 2.56rem;
}

nav ul li a {
    display: block; /* accept height and width settings */
    height: 100%; /* fill li areas height */
    width: 100%; /* fill li areas width */
    background-color: aqua; 
}

.thumbnails figure {
    width: 100%;
    max-width: 260px;
    margin: 2rem auto 3rem auto;
}

@media screen and (min-width: 1024px) {
    /*media query: css for screens larger than 1024px wide only goes here */

    h1 {
        font-size: 3.125rem;
        padding-left: 2.8rem;
    }

    header span {
        font-size: 3.125rem;
        position: relative;
        top: -0.5rem;
    }

    nav {
        margin: 0;
    }

    .thumbnails {
        display: flex; /* thumbnails only go side by side on bigger screens */
        max-width: 60rem; /* prevent it from stretching forever, keeps figure closer together than too spread apart */
    }
    
    .highres {
        display: flex;
    }
    .thumbnails figure {
        max-width: 24.25rem;
        margin: 2rem auto 3rem auto;
        border: 0.5px solid rgb(92 75 25);
        padding: 2rem 4rem 3rem 4rem;
        box-shadow: 1px 5px 13px #9a8361;
        width: inherit;
    }

    .highres figure {
        max-width: 24.25rem;
        margin: 2rem auto 3rem auto;
        border: 0.5px solid rgb(92 75 25);
        padding: 2rem 4rem 3rem 4rem;
        box-shadow: 1px 5px 13px #9a8361;
        width: inherit;
    }

    body {
        background-color: rgb(255, 228, 196);
    }

    .wrapper {
        max-width: 60rem; /* 960px */
        margin: 1rem auto; /* 1rem space above/below, automatic left/right margins centers the div */
        border: 0.5px solid rgb(95, 75, 25);
        background-color:rgb(255, 228, 196);
    }

}

