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

div.container {

    display: grid;
    max-width: 75em;
    margin: auto; 

    
}


body {
	background-color: rgb(250, 250, 250); /* Not totally white. */
	color: rgb(45, 45, 45);  /* Not totally black. */
	line-height: 140%; 	/* A little extra leading. */
	font-family: sans-serif;
}
h1 {
	background-color: rgb(253, 140, 40);
	color: rgb(250, 250, 250); /* Same as body background. */
	font-size: 2em;
	padding: 1.5rem 1.50rem 0.5rem; /* You want three values. */
	font-family: Sutro, serif;  
    font-weight: bold;  
    font-style: normal;
	line-height: 120%;

}
h2 {
	background-color:  rgb(253, 140, 40);
	color: rgb(247, 217, 187);
	font-size: 1.5em;
	padding: 0rem 1.5rem 2rem;
	font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;

}
figcaption{
	color: rgb(43, 43, 43);
	font-size: 1em;
	padding: 0.75rem 1.75rem 1rem;
	font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: italic;
   
   
    

}
figure{

    width: 100%;
    display: grid;
    grid-template-columns: 75% auto;
    margin: 0rem 0rem 2rem 0rem;

}

h3 {
	
    color: rgb(253, 140, 40);
	font-size: 1.1em;
	padding: 1rem 1.75rem 0rem;
	font-family: Sutro, serif;  
    font-weight: 500;  
    font-style: normal;
	text-transform: uppercase;
	letter-spacing: 0.1em;
    border-top: .1em solid rgb(253, 140, 40);
    margin: 1rem; 
    padding-top: 1rem;
}

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

ul { 
	margin: 0rem 0rem;
	list-style-type: disc;
	padding: 0rem .75rem 0.25rem;
	font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;

}
ol { 
	margin: 0rem 0rem;
	list-style-type: decimal;
	padding: 0rem 0.75rem 1.25rem;
	font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
}
 li{ 
    margin: 1rem;

}
main{

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

footer {
	background-color: rgb(253, 140, 40);
	color: rgb(250, 250, 250); /* Same as body background. */
	font-size: 0.95em;
	padding: 1rem 1rem 1rem; /* You want three values. */
	font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;

}

