 
header {
    background-color: #a15929f8; 
    border: 1px solid #000; 
    
    padding: 1rem;
    height: 5.5rem;
    color: white;
    font-size: 0.925rem;
    font-weight: 900;
    font-style: normal;
}

header span {
    position: relative;
    top: -1.175rem;
    display: inline-block;
    left: 0.25rem;

}

body {
    font-family:"Roboto", "helvetica neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}

  

    nav ul {

        display: flex; /* Make the \<li> go side by side */
 justify-content: space-between; 
        list-style-type: none;
    }

    nav ul li {
    line-height: 44px;
    height: 44px;
    flex: 1;
    text-align: center;
    
    }

    nav ul li a {
        display: block;
        height: 100%;
        width: 100%;
        
    }
    
    main {
    padding: 1rem;
    }
    
   


#logo {
    width: 3.375rem;
    height: auto;
}

h1 {
    font-family: "Roboto", "helvetica neue", Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 1.5rem;
    margin:1rem 0 3rem 0; 
    width: 100%;
    max-width: 260px;
}

footer p {text-align: center;}
footer {background-color: #a15929f8;
    height: 6.25rem;
    color: white;
    display: flex;
    flex-direction: column;
        justify-content: center;}

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

nav {
    margin: 0.75rem auto; 
    
    width: 12rem; 
    }

    nav ul {
        list-style-type: none;
        display: flex;
        justify-content: space-between;
        margin: 0.5rem auto; 
         }
 nav ul li {
 height: 44px; /* minimum tappable size */
 line-height: 44px; /* leading: vertically centers text (when one
line) */
 flex: 1; /* allows list item to grow within the flexbox */

 text-align: center; /* center text in tappable area */
/* Added temporarily so we can see what
is going on */
 }

 nav ul li a {
    display: block; /* accept height and width settings */
 height: 100%; /* fill li area's height */
 width: 100%; /* fill li area's width */
  /* Added temporarily so we can see what
is going on, remove later */
 }

 .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;
            }
            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
           figures closer together than too spread apart */
            
            }

            .thumbnails {
                display: flex; /* <-- Comment out display: flex; or completely
               remove the .thumbnails rule */
                }
            .thumbnails figure {
            max-width: calc(260px + 8rem); /* let the browser do the math:
           original size of jpeg + both sides padding */
            margin: 2rem auto 3rem auto;
            border: 1px solid #444;
            padding: 2rem 4rem 3rem 4rem;
            box-shadow: 1px 5px 13px #ccc;
            }   
            body {
                background-color: #5d5c64;
               }
               .wrapper {
                max-width: 60rem; /* 960px */
                margin: 1rem auto; /* 1rem space above/below, automatic
               left/right margins centers the div */
                border: 1px solid #444;
                background-color: #fff;
                }


}




