/*CSS DOCUMENT*/

html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit;} /*My edited version of the Eric Meyer’s reset tool. You may want to include this in all of your future CSS files. */

img {
  width: 100%; /*Please leave this line.*/
  display: block;
}
header {
  background-color: rgb(240, 141, 52);
}

h1 {
  color: rgb(250, 250, 250); /* Same as body background. */
  font-size: 2em;
  font-family: "Sutro Bold", sutro;
  padding: 2.5rem 1.5rem 0.5rem; /* You want three values. */
  font-weight: bold;
}

h2 {
  color: rgb(249, 221, 191);
  font-size: 1.5em;
  padding: 0rem 1.5rem 1rem;
  font-family: "Sutro Bold", sutro;
  font-weight: thin;
}

figcaption {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  font-size: 1em;
  padding: 1rem 1.5rem 1rem;
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5em;
}

h3 {
  background-color: rgb(255, 255, 255);
  color: rgb(240, 141, 52); /* Same as body background. */
  font-size: 1.25em;
  font-family: Sutro, serif;
  font-weight: 300;
  font-style: normal;
  padding: 0.5rem 1.5rem 0rem; /* You want three values. */
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

ul {
  padding: 0rem 1.5rem 0.75rem;
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
}

li {
  margin: 1em;
}

ol {
  padding: 0rem 1.5rem 1.75rem;
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
}

footer {
  background-color: rgb(240, 141, 52);
  padding: 1rem 1.5rem 1rem;
  color: rgb(255, 255, 255);
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
}

div.container {
  max-width: 60em;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 20%, 10% auto;
  max-height: 75em;
}

header {
  grid-column: 1/5;
}

figure {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column: 1/6;
  max-width: 60em;
  margin: auto;
}

img {
  grid-column: 1/5;
}
figcaption {
  grid-column: 5/6;
  padding-left: 2em;
}

main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row: 3/4;
  grid-column: 1/5;
}
.ingredients {
  grid-column: 1/3;
  border-top: 2px solid rgb(240, 141, 52);
  margin: 2.5em 1em;
}
.directions {
  grid-column: 3/5;
  border-top: 2px solid rgb(240, 141, 52);
  margin: 2.5em 1em;
}

footer {
  grid-column: 1/5;
}


/*By the way, when we use the slash-asterisk combo, it’s a comment on the CSS and it’s meant for human beings. The machine knows it is not supposed to process anything until it finds a asterisk-slash combo that ends the comment on the CSS. */
