/*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(255,136,0);
    width: 100%;
}

h1 {
    font-size: 1.75em;
    padding: 1em 1em 0.25em;
    font-family: Sutro, serif;
    font-weight: 700;  
    font-style: normal;
    color: rgb(255,255,255);
}

h2 {
    font-size: 1.5em;
    padding: 0.25em 1.25em 1em;
    color: rgb(245,222,179);
}

figcaption {
    font-family: poppins, sans-serif;  
    font-weight: 100;  
    font-style: italic;
    font-size: 0.75em;
    margin: 1em 2em 0em;
    grid-column: 9/11;
}

h3 {
    text-transform: uppercase;
    color: rgb(255,136,0);
    margin: 2.5em 1em 1em;
    font-weight: 500;
}

ul {
    margin: 1em 0.75em;
}

ol {
    margin: 0.5em;
}

li {
    margin: 1em;
}

footer {
    padding: 1em;
    margin: 2.5em 0em 0em;
    background-color: rgb(255,136,0);
    color: rgb(245,222,179);
}

div.container {
    max-width: 55em;
    margin: auto;
}

figure {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
}

img {
    grid-column: 1/9;
}

main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

section.ingredients{
    grid-column: 1/2;
}

section.directions {
    grid-column: 2/3;;
}


/*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. */