

html {
  background-color: #FFFBEA;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%; }

.container {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: [first] 1fr [content-start] 3fr [content-end] 1fr [end];
  grid-template-rows: [top] 15% [title] 100px [body] auto [bottom];
  width: 100vw;
  height: 90vh; 
}

.content-block{
  grid-column-start: content-start;
  grid-column-end: content-end;
}

.title-block {
  grid-row-start: title;
  grid-row-end: body;
  justify-self: center;
}

.body-block {
  grid-row-start: body;
  grid-row-end: bottom;
}

h1 {
  font-family: "ITC Medea W01 Extra Bold";
  font-size: 50px;
  color: #9B8523;
}

.quote {
  color: #0F591A;
  font-family: "Kefa-Regular";
  font-family: "American Typewriter Normal";
  line-height: 1.3;
  letter-spacing: 1.1;
  font-size: 18px;
}

.attribution {
  color: #8BB592;
  text-align: right;
  font-family: "American Typewriter Normal";
  font-size: 12px;
}

a {
  color: #9B8523;
}

a:hover {
  color: #EBC932;
}