body{
    background-color: rgb(134,170,84);
    font-family: "Concert One", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}
header{
    background-color: rgba(94,75,0,255);
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-style: normal;      
    font-size: 26px;
    font-weight: 600;
    height: 100px;
    padding: 1.5625rem; /* adjust as necessary, in REMs | By default, 1rem
= 16px so 30/16 = 1.875rem */
    
}

header img{
    height: auto;
    width: 70px;

}

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

main {
 padding: 1rem;
 }

nav{
    margin: 2rem auto; /* shorthand for 2rem top/bottom and zero
    right/left (both pairs are the same) */
    width: 3.4rem;
}

nav ul{
    list-style-type: none;
    display: flex; /* Make the \<li> go side by side */
    justify-content: center; /* Switch to Chrome's web
    inspector to play with this */
}
nav ul li{
    display: inline;
    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 */
    margin: 15px;
    
}

nav ul li a {
    display: block; /* accept height and width settings */
    height: 100%; /* fill li area's height */
    width: 80px; /* fill li area's width */
    background-color: rgba(94,75,0,255); 
    }

nav ul li a:link {
    text-decoration: none;
    color: white;
  }
  
  nav ul li a:visited {
    text-decoration: none;
    color: white;
  }
  
  nav ul li a:hover {
    text-decoration: underline;
    color: white;
  }
  
  nav ul li a:active {
    text-decoration: underline;
    color: white;
}

h1 {
    font-size: 1.9rem;
    margin: 0.05rem 0 1.7rem 0; /* Inspect these values and adjust as
    necessary */
    justify-content: center;
}

.thumbnails{
    display:flex;
}

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

figcaption a{
    color: black;
}

figcaption a:link {
    text-decoration: none;
    color: black;
  }
  
  figcaption a:visited {
    text-decoration: none;
    color: black;
  }
  
  figcaption a:hover {
    text-decoration: underline;
    color: black;
  }
  
  figcaption a:active {
    text-decoration: underline;
    color: black;
}

footer{
    background-color: rgba(94,75,0,255);
    color: white;
    height: 6.25rem;
    padding: 1.5625rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer p{
    text-align: center;
    
}

img{
    max-width: 100%; /* responsive images */
    height: 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-left: 9rem;
    }
    .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 */
    /* border: 1px solid red;
    }
    .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;
    padding: 2rem 4rem 3rem 4rem;
    }
    .wrapper {
    max-width: 80rem; /* 960px */
    margin: auto auto; /* 1rem space above/below, automatic
   left/right margins centers the div */
    }
    }