/*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: 75em;
    margin: auto;
    background-color: white;
}

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

img {
	width: 100%;
	display: block;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
}



body {
	background-color: rgb(228, 225, 225);
	color: rgb(31,32,33);
	line-height: 140%;
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;

    
}

h1 {
	background-color: rgb(250, 153, 27);
	color: rgb(255, 255, 255);
	font-size: 2.5em;
	padding: 1em 1em .5em;
    font-family: Sutro, serif;  
    font-weight: 700;  
    font-style: normal;
    line-height: 140%;
}



h1 span { 	
	font-family: serif;
	font-style: italic;
	font-weight: normal;
	text-transform: lowercase;
}

h2 {
	background-color: rgb(250, 153, 27);
	color: rgb(255, 255, 255);
	font-size: 2em;
	padding: .5em 1em 1em;
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
}

figcaption {
    background-color: rgb(255, 255, 255);
	color: rgb(31,32,33);
	line-height: 150%;
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: italic;
    padding: 1.5rem 1.5rem 1.5rem;
}

h3 {
	margin: 1em 2em 1em;
	padding-top: 1rem;
	font-size: 1.5em;
	color: rgb(250, 153, 27);
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: .2rem;
    border-top: 0.1rem solid rgb(250, 153, 27);
}

h4 {
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
}

ul {
	margin: 1rem 2rem 1rem;
    list-style-type: disc;
}

li {
    margin: 1rem 1rem 1rem;
}

ol { 
	margin: 1rem 2rem;
	list-style-type: ul;
}

footer {
    background-color: rgb(250, 153, 27);
	color: rgb(255, 255, 255);
	line-height: 140%;
    font-family: poppins, sans-serif;  
    font-weight: 400;
    font-style: normal;
    padding: 1.5rem 3rem 1.5rem;
    margin-top: 4rem;
}

main {
    padding: 2rem, 0rem, 1rem;
    display:grid;
    max-width: 100%;
    grid-template-columns: 50% auto;
}

section.ingredients {
    max-width: 95%;
    border-top: 0.2rem sol rgb(250, 153, 27);
    grid-column: 1/2;
}

section.directions{
    max-width: 95%;
    border-top: 0.2rem sol rgb(250, 153, 27);
    grid-column: 2/3;
}

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

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