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

html {
    background-color: rgb(221, 221, 221);
}

img {
    width: 100%; /*Please leave this line.*/
     display: block;
}

.container {
    max-width: 80%;
    margin:auto;
    background-color: rgb(250, 250, 250);
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: italic; 
}

figure {
    display: grid;
    grid-template-columns: 80% auto;
}

img {
    grid-column: 1/2;
}

figcaption {
    grid-column: 2/3;
    margin: 2em 1.5em 2em 2em;
    font-size: 100%;
}

h1 {
    font-size: 250%;
    color: rgb(250, 250, 250);
    font-family: Sutro, serif;  
    font-weight: 700;  
    font-style: normal;
    padding: 2em 1em 0.2em 0.5em;
    background-color: rgb(255, 136, 0);
}

h2 {
    font-size: 150%;
    color: rgb(255, 221, 187);
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
    padding: 0em 1em 1em;
    background-color: rgb(255, 136, 0);
}

h3{
    color: rgb(255, 136, 0);
    margin: 2.5em 1.5em 1em 2em;
    padding: 0.75em 1.5em 0em 0em;
    font-family: Sutro, serif;  
    font-weight: 500;  
    font-style: normal;
    font-size: 120%;
    text-transform: uppercase ;
    letter-spacing: 0.1em;
    border-top: medium solid;
}

main {
    display: grid;
    grid-template-columns: 50% auto;
}

.ingredients{
    grid-column: 1/2;
    list-style-type: disc;
}
.directions{
    grid-column: 2/3;
    list-style-type: decimal;
}

main{
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
    font-size: 130%;
}
ul {
	margin: 1em 1em 3em;
   
}

ol {
	margin: 1em 1em 3em;
   
}

li { 
	margin: 1em 1em;
	
}

footer{
    padding: 1em 1em;
    background-color: rgb(255, 136, 0);
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
    font-size: 130%;
    color: rgb(239, 237, 236);
}

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