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

div.container {
    max-width: 70em;
    margin: auto;
    background-color: rgb(250,250,250);
}

header{
    grid-column: 1/3;
}

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

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

figcaption{
    font-style: italic;
    margin: 1rem 2rem 1rem;
}

body{
    background-color: rgb(221,220,220);
    color: rgb(51,51,51);
    line-height: 140%; /* A little extra leading. */
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
    }

main{
    display: grid;
    grid-template-columns: 1fr 1fr;
    }

h1{
    background-color: rgb(243, 139, 41);
    color: rgb(250	250	250);
    font-family: Sutro, serif;  
    font-weight: 700;  
    font-style: normal;
    font-size: 2.5em;
    padding: 3rem 3rem 0.5rem 1.5rem;
}

h2{
    background-color: rgb(243, 139, 41);
    color: rgb(249	213	174)	;
    font-family: Sutro, serif;  
    font-weight: 400;  
    font-style: normal;
    font-size: 1.75rem;
    padding: 0.5rem 1.5rem 1.5rem;
}

h3{
    margin: 2rem 3rem 1rem;
	font-size: 1.25em;
	color: rgb(243, 139, 41);
	font-family: Sutro, serif;  
    font-weight: 400;  
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-top: 2px solid rgb(243, 139, 41);
    padding-top: 1rem;
}

p.ingredients{
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
    grid-column: 1/2;
}

p.directions{
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
    grid-column: 2/3;
}

ul{
    padding: 0.5rem 3rem 3rem
}

ol{
    padding: 0.5rem 3rem 3rem
}

li{
    padding: 0.5rem 0.25rem 0.5rem;
}

footer{
    background-color: rgb(243, 139, 41);
    color: rgb(250	250	250);
    padding: 1.5rem;
    grid-column: 1/3;
}