/*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;
}

h1 { 
    color: white;
    font-family: Sutro, serif;  
    font-weight: 700;  
    font-size: 2.5em;
    font-style: normal; 
    background-color: rgb(255, 144, 53);
    padding: 1em 3em .1em .7em;
}

h2 {
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-size: 2em;
    font-style: normal;
    color:rgb(255, 229, 208);
    background-color: rgb(255, 144, 53);
    padding: 1em 3em 1em 1em;
}

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

h3 {
    font-family: Sutro, serif;  
    font-weight: 400;  
    font-style: normal;
    font-size: 1.3em;
    padding: 1rem 1rem .1rem 2em;
    text-transform: uppercase;
    color: rgb(255, 144, 53);
}

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

ul {
    margin: 1em 2em;
    padding: .5em 1em 1em;

}

section.ingredients{
    line-height: 1.5em;
}

ol {
    margin: 1em 2em;
    padding: .5em 1em 1em;
}

section.directions {
    line-height: 1.5em;

}

li {
    padding: 0.5em .5em .5em;
}

footer { 
    background-color: rgb(255, 144, 53);
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
    color: rgb(251, 251, 251);
    padding: 1em 1em 1em 1em;
}


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