/*Typography*/
h1,
p {
  font-family: 'Merriweather', serif;
  color: bisque;
}

h1 {
  font-weight: 900;
  letter-spacing: .1rem;
  text-align: center;
}

p {
  font-weight: 400;
  letter-spacing: .05rem;
  line-height: 1.5rem;

  padding-left: 4rem;
  padding-right: 4rem;
}



#container {
  display: grid;
  grid-gap: .5rem;
  grid-template-columns: 5fr 1fr;


  background: black;
}

.grid_item {
  border: 2px solid red;
}

.site_image {
  width: 80%;
  padding-left: 5rem;
}

header {
  grid-column: 1/-1;
}

#main {
  grid-column: 1/2;
}

#quote {
  grid-column: 2/3;
}

blockquote {
  background: #292b2d;
  color: white;
  font-family: 'Merriweather', serif;
  letter-spacing: .08rem;
  line-height: 1.4rem;
  box-shadow: 0 2px rgba(0, 0, 0, .25);
}


footer {
  grid-column: 1/-1;
}




@media screen and (max-width:1000px) {
  #main {
    grid-column: 1/-1;
  }

  #quote {
    grid-column: 1/-1;
  }
}