body 
    { font-family: “Roboto”, ‘Helvetica Neue’, Helvetica, Arial, sans-serif; font-weight: 400;
    font-style: normal; }
  h1
    { font-family: “Roboto”,‘Helvetica Neue’, Helvetica, Arial, sans-serif; font-weight: 900; font-style: normal; }
footer p {text-align: center;}

header img {
  width: 70px;
  height: auto;
}
header {
    background-color: #800C0CA7; /* fill*/
    /*rgba (255,255,255,0,5) => 0,5 semitransparent*/

    border:1px solid #000;

    height: 6.875rem;

    padding: 1.125rem;
    color: black  ;

    font-size: 1.25rem;
    font-weight: 56.25rem;
    font-style: normal;

}    
header span {
  position: relative;
  top: -0.575rem;
  width: 8rem;
  display: inline-block;
}



footer {
  background-color: #800C0CA7; /* fill*/
  /*rgba (255,255,255,0,5) => 0,5 semitransparent*/

  border:1px solid #000;

  height: 6.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0; 
  padding: 0;
  background-color: #E16C6C47;
  }
 
  a 
  {text-decoration: none;}
  main 
  { 
    margin-left: 36px;
  }

 header h1 
 { display: inline;
font-size:100%;
  }
.thumbnails 
{ 
  /* display: flex; */
}

header span 
{ position: relative;
top: -21px
}
section .thumbnails { padding: 50px;}
img {
  max-width: 100%;
  height: auto;
}
nav {
  margin: 2rem auto 2rem 2rem;
  border: 1px solid black;
  width: 13rem;
}
nav ul{ list-style-type: none;
  display: flex;
justify-content: space-between;}
  nav ul li {
  height: 44px;
  line-height: 44px;
  flex: 1;
  text-align: center;
  }
  nav ul li a {
    display: block;
    height: 100%;
    width: 100%;
    /* background-color: aqua; */
  }
  main { 
    padding: 1rem;
  }
  h1 {
    font-size: 2.5rem;
    margin: 1rem 0 3rem 0;
  }
  
 /* ALWAYS PLACE THE MEDIA QUERY AT THE BOTTOM OF THE CSS FILE */
/* IF YOU HAVE SEVERAL QUERIES, GO FROM SMALL (FIRST) TO LARGE
VIEWPORT SIZES (LAST) */
@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 */
  /* /* 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;
  border: 1px solid #b15f5f;
  padding: 2rem 4rem 3rem 4rem;
  box-shadow: 1px 5px 13px #a35252;
 
  }
  body {
    background-color: #ee8989;
    }
    .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;
    }
  } /* ======= Close the media query ======= */
  /* ALWAYS KEEP THE ABOVE COMMENT NEXT TO THE MEDIA QUERY CLOSING TAG, SO
  YOU KNOW WHERE THE QUERY ENDS: PREVENTS MANY MISTAKES */