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

body {
background-color: rgb(221, 221, 221); 
color: rgb(31, 31, 31);  
line-height: 140%; 	
font-family: poppins, sans-serif; 
font-size: 1rem; 
font-weight: 400;  
font-style: normal;
}
div.container {
    max-width: 75em;
    margin: auto;
    background-color: rgb(255, 255, 255);
}
section.ingredients {
    max-width: 90%;
    border-top: 0.2em solid rgb(239, 142, 52);
}
section.directions {
    max-width: 90%;
    border-top: 0.2em solid rgb(239, 142, 52);
}
figure {
    display: grid;
    max-width: 100%;
    margin-bottom: 1em;
    grid-template-columns: 80% auto;
}

main {
    display: grid;
    margin: auto;
    padding: 2em;
    grid-template-columns: repeat(2, 1fr);
}
h1 {
    background-color: rgb(239, 142, 52);
    color: rgb(251, 250, 250);
    font-size: 2em;
    padding: 2.5rem 1.5rem 0rem;
    line-height: 2.5rem;
    font-family: Sutro, serif;  
    font-weight: 700;  
    font-style: normal;
 }
h2 {
    background-color: rgb(239, 142, 52);
    color: rgb(250, 251, 190);
    font-size: 1.5em;
    padding: .75rem 1.5rem 2rem;
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
 }
 figcaption {    
    padding: 0.75rem 1.5rem 0rem;
    font-size: 1.05em;
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: italic;
    font-weight: 400;
    line-height: 1.75rem;
    margin: 1em 0em 0em 1em;
    }
h3 {
    margin: 1em 1.25em 0em; 
    padding-top: 0.5rem;
    font-size: 1.2em;
    color: rgb(239, 142, 52);
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em; 
}
ul {
    font-size: 1em;
    margin: 0.75rem 1rem 2rem;
}
li { 
    margin: 1rem .5rem 1rem;
}
ol {
    font-size: 1em;
    margin: 0.75rem 1rem 2rem;
 }
img {
    width: 100%;
    display: block;
 }
footer {
    background-color: rgb(239, 142, 52);
    color:rgb(238, 238, 238);
    padding: 1rem 0rem 1.2rem 1.5rem;
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
}
    
    


