/*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(236, 235, 235); 
	color: black;  
	line-height: 140%; 	/* A little extra leading. */
	font-family: poppins, sans-serif;
    font-weight: 450;
    font-style: normal;
}

h1 {
	background-color: rgb(255, 145, 0);
	color: white; 
	font-size: 2.1rem;
	padding: 2rem 1rem .5rem; /* You want three values. */
    font-size: 2.75em;
    font-family: Sutro, serif;
	font-weight: 700;
    font-style: normal;
    line-height: 100%;

}

h2 {
	background-color: rgb(255, 145, 0);
	color: rgb(253, 223, 199);
	font-size: 1.5rem;
	padding: 1.0rem 1.5rem 1.75rem;
	font-family: Sutro, serif;
	font-weight: 500;
    font-style: normal;
}

figcaption{
    padding: 1rem 1.5rem 1rem;
    font-style: italic;
}

h3 {
	padding: 2rem 1.5rem .25rem 1.5rem; /*Three values again. You got the idea.*/
	font-size: large;
	color:  rgb(255, 145, 0);
    font-family: Sutro, serif;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em; /*Just an extra tracking for bold uppercase letters. Try 0.1em */
	
}

footer{
    background-color: rgb(255, 145, 0);
    color: rgb(255, 255, 255);
    padding: 1rem 1.5rem 1rem;
}

ul{
    margin: 1rem 1rem 1rem;
}

li{
    margin: 1rem 1rem 1rem; 
}

ol{
    margin: 1rem 1rem 3rem 1rem;

}
img {
    width: 100%; /*Please leave this line.*/
     display: block;
}
