/*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%; /*Please leave this line.*/
     display: block;
}

body {
    background-color: rgb(220, 220, 220);
}

div.container { 
    max-width: 87em;
    margin: auto; 

}


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

h2 {
    background-color: rgb(240, 141, 52);
    color:rgb(250, 222, 191);
    font-size: 1.4em;
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
    padding: 0.25rem 1rem 1rem;
}

figure {
    display: grid;
    grid-template-columns: 84% 16%;
}


figcaption {
    background-color: rgb(249, 249, 249);
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: italic;
    font-size: 1em;
    padding: 1.8rem; 
}

main {
    display:grid;
    grid-template-columns: 50% 50%;
    background-color: rgb(249, 249, 249);
    padding: 2.5em 3em;

}

h3 {
    background-color: rgb(249, 249, 249);
    color:rgb(240, 141, 52);
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
    font-size: 1.3em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 1rem 0.4rem 0.3rem;
}

.ingredients {

    border-top: 0.15em solid rgb(240, 141, 52);
    margin: 1.5em 1.5em 0.5em 0.75em;
}


ul {
    background-color: rgb(249, 249, 249);
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
    padding: 0.7rem 1.5rem 2rem 0rem;
}

.directions {
    border-top: 0.15em solid rgb(240, 141, 52);
    margin: 1.5em 1.5em 0.5em 1.5em;
}


ol {
    background-color: rgb(249, 249, 249);
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
    padding: 0.7rem 0.1rem 2rem 0rem; 
}

li {

    padding: 0.5rem;
}


 
footer {
    background-color: rgb(240, 141, 52);
    color: rgb(250, 250, 250);
    padding: 1.2rem;
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
}


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