/*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 
}
div.container {
	max-width: 75em;
	margin: auto;
  }

figure {
	display: grid;
	grid-template-columns: 80% auto;
	grid-template-rows: auto;
}

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

figcaption {
    font-family: poppins, sans-serif;  
    font-weight: 500; 
    font-size: 1.0em; 
    font-style: italic;
    line-height: 165%;
    margin: 2.0em 2.3em 2.0em;
}

header {
	grid-column: 1/5;
}

body {
	background-color: rgb(250, 250, 250);
	color: rgb(1, 1, 1);
	line-height: 155%;
	font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
}

h1 {
	background-color: rgb(239, 142, 52);
	color: rgb(251, 250, 250);
	font-size: 2.1em;
	padding: 1em 0.5em 0em;
	font-family: Sutro, serif;  
    font-weight: 700;  
    font-style: normal;
    line-height: 125%;
}


h2 {
	background-color: rgb(239, 142, 52);
	color: rgb(255, 213, 173);
	font-size: 1.6em;
	padding: 0em 0.7em 0.7em;
	font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
    line-height: 135%;
}

h3 {
	margin: 1.3em 1.3em 0.8em; 
	font-size: 1.2em;
	color: rgb(239, 142, 52);
	font-family: Sutro, serif;  
    font-weight: 300;  
    text-transform: uppercase;
	letter-spacing: 0.1em;
	border-top: 2.5px solid rgb(239, 142, 52);
	padding-top: 1em;
	}

section {
    margin-top: 2em;
} 
    
ul {
	margin: 1em 0.1em 3em;
}

li { 
	margin: 1em 1.5em;
}

ol {
	margin: 1em 0.1em 1em;
}

li { 
	margin: 1em 1.5em;
}

footer {
    background-color: rgb(239, 142, 52);
    padding: 1em 1.5em;
    color: rgb(251, 250, 250);
    margin-top: 3em;
	grid-column: 1/3;    
}

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