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



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

body {
	background-color: #FAF9F6; 
	color: #363636;  
	line-height: 130%; 	
	font-family: "sutro", serif;
}

header {
    background-color: #F08C34;
	color: #FAF9F6;
    font-weight: 600; 
}

figcaption {
    margin: 1em 2em;
    font-family: "poppins", sans-serif;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6em;
    
}

h1 {
    font-size: 2em;
    font-weight: 600;
    line-height: 110%;
    padding: 1.2em 0em 0em;
    margin: 0em 1em 0.5em;
}
    
h2 {
    opacity: 0.6;
    font-size: 1.5em;
    font-weight: 400;
    padding: 0em 1em 1em;
    margin: 0em 0.3em 0em;
}
    
h3 {
    color: #F08C34;
    font-family: "sutro", serif;
    font-style: lighter;
    text-transform: uppercase;
    margin-left: 1em;
    padding: 1em 0.7em 1em;
    letter-spacing: 0.1em; 
    font-size: 1.2em;
}

ul {
    padding: 0.1em 2em;
    
}

ul li{
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 1em; 
}

ol {
    padding: 0.1em 2em;
}

ol li{
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 1em;
}
    
footer {
    background-color: #F08C34;
	color: #FAF9F6;
    font-family: "poppins", serif;
    font-weight: 300;
    font-style: normal;
    margin: 1em 0em 0em;
    padding: 1em 1em 1em;
}
    
    
    
    
    
    