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

div.container { 
   max-width: 75em;
   margin: auto;
}


img {
    width: 100%; 
     display: block;
}

figure {
    width: 100%;
    text-align: left;
    font-style: italic;
    display: grid;
  grid-template-columns: 75% auto;

    
  }
  img.scaled {
    width: 100%;
  }
  figcaption{
    margin: 2rem 3.5rem 1rem; 
  }

body {
    background-color: #faf9f6;
    color: #313639 ;  
	line-height: 145%; 	
	font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
}


h1 {
	background-color: #ff8c04;
	color: #faf9f6;
	font-size: 3em;
	padding: 2rem 2rem .5rem;
	font-family: Sutro, serif;  
    font-weight: 700;  
    font-style: normal;
    line-height: 115%;
}
h2 {
	background-color: #ff8c04;
	color: #F9DDBE;
	font-size: 2em;
	padding: 1rem 2rem 2rem;
	font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
}
h3 {
	margin: 2rem 2rem .5rem; 
	padding-top: 2rem;
	font-size: 1.5em;
	color: #ff8c04;
	font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-top: .1em solid #ff8c04;
   

}

main {
    display: grid;
    grid-template-columns: 50% auto;
}

footer {
    background-color: #ff8c04;
	color: #F9DDBE;
	font-size: 1em;
	padding: 1rem 2rem 1rem;
	font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
}
ul{
color:#000000;
padding: .5rem 1.5rem ;
line-height: 200%;
list-style-type: disc;

}

ol{
    color: #000000;
    padding: .5rem 1.5rem 4rem;
    list-style-type: decimal;
    line-height: 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. */
