/*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%;
    display: block;
}

div.container {
    display: grid;
    max-width: 70em;
    margin: auto;
}

figure {
    display: grid;
    background-color: rgb(250, 250, 250);
    grid-template-columns: 80% auto;
}

main {
    display: grid;
    background-color: rgb(250, 250, 250); 
    grid-template-columns: 50% auto;
    padding: 1rem;
}

section.ingredients {
    margin: 2rem;
    border-top: 2.5px solid rgb(240, 141, 52);
}

section.directions {
    margin: 2rem;
    border-top: 2.5px solid rgb(240, 141, 52);
}

h1 {
	background-color: rgb(240, 141, 52);
	color: rgb(250, 250, 250); 
	font-size: 2.2em;
	padding: 1em 0.5em 0em;
    font-family: Sutro, serif;  
    font-weight: 700;  
    font-style: normal;
}

h2 {
	background-color: rgb(240, 141, 52);
	color: rgb(249, 222, 191); 
	font-size: 1.5em;
	padding: 0.3em 0.8em 1em;
	font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
}

figcaption {
    font-family: poppins, sans-serif;
    padding: 1em 1.6em 0.5em;  
    font-weight: 400;  
    font-style: italic
}

h3 {
    color: rgb(240, 141, 52);
    font-family: Sutro, serif;  
    font-weight: 300;
    font-size: 1.2em; 
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 2rem 0rem 0.5rem;
}

body {
    background-color: rgb(221, 221, 221);
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
}

li { 
	padding: 0.5em 0.1em;
}


footer {
    background-color: rgb(240, 141, 52);
	color: rgb(249, 222, 191); 
	padding: 1em 1.6em;
	font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
}
