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

header {
	background-color: rgb(255, 139, 31); 
    font-family: Sutro,serif;
    font-style: normal;
}

h1{
    color: rgb(255,255,255);
    font-size: 3rem;
    font-weight:700;
    padding-top: 2rem;
    padding-left:1rem;
    padding-bottom: 1rem;

}
h2{
    color: rgba(255, 255, 255, 0.56);
    font-size: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;

}

figcaption{
    color: rgb(0,0,0);
    font-family: poppins, sans-serif;
    font-style: italic;
    font-weight: 300;
    padding: 1rem;
}
h3{
    text-transform: uppercase;
    color: rgb(255, 139, 31);
    font-size: 1.5rem;
    font-family: Sutro, serif;
    letter-spacing: 0.1rem;
    padding: 1rem;
}
ul{
    padding-left: 0;
    list-style-type: circle;
    padding: 1rem;
    list-style-type: disc;
    line-height: 2rem;
}
ol{
    padding-left: 0;
    padding: 1rem;
    line-height: 1.5rem; 
}

ol li {
    padding-bottom: 1rem;
}

.ingredients {
    color: rgb(0,0,0);
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-left:1rem;
}

.directions {
    color: rgb(0,0,0);
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-left: 1rem;
    padding-bottom: 2rem;
}

footer{
    background-color: rgb(255, 139, 31);
    padding: 1rem;
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: rgba(255, 255, 255, 0.687);
}




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