/*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(250, 250, 250); 
	color: rgb(27, 27, 27);  
	line-height: 140%; 	
	font-family: sans-serif;
}
h1 {
	background-color: rgb(240, 141, 52);
	color: rgb(250, 251, 252);
	font-size: 2rem;
	padding: 2rem 2rem 0.4rem;
    line-height: 2.2rem;
	font-family: Sutro, serif;
	font-weight: 700;
    font-style: normal;
}
h2 {
	background-color: rgb(240, 141, 52);
	color: rgb(248, 217, 183);
	font-size: 1.5rem;
	padding: 0.5rem 2rem 1.5rem;
	font-family: Sutro, serif;
	font-weight: 400;
    font-style: normal;
}
h3 {
	color: rgb(240, 141, 52);
	font-size: 1.2rem;
	padding: 1rem 1.5rem 1.5rem;
	font-family: Sutro, serif;
	font-weight: 300;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
figcaption{
    font-family:poppins, sans-serif;
    font-size: 1rem;
	font-style: italic;
	font-weight: 500;
    padding: 1rem 1.5rem 0.2rem;
}
p {
font-family: poppins, sans-serif;  
font-weight: 400;  
font-style: normal;
}

ul{
    padding: 0.5rem 1.3rem 1rem;
}
ol{
    margin: 0.5rem 0.5rem 1rem;
    padding: 0.5rem 1.6rem 2rem;
}
li{
    font-family: poppins, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    font-style: normal;
    padding:0.5rem 0rem 0.5rem ;
}
footer{
    padding: 1rem 1rem 1rem;
    background-color: rgb(240, 141, 52);
	color: rgb(237, 220, 200);
}
/*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. */
