/*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 {
    max-width: 70em;
    margin: auto;
    background-color: rgb(249,249,249);
}

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

h1 {
	background-color: rgb(255,131,0);
	color: rgb(249,249,249); /* Same as body background. */
	font-size: 2rem;
	padding: 2rem 1.5rem 0.5rem; /* You want three values. */
    font-family: Sutro, serif;  
    font-weight: 700;  
    font-style: normal;
}

h2 {
	background-color: rgb(255,131,0);
	color: rgb(254,216,177);
	font-size: 1.5rem;
	padding: 0rem 1.5rem 2rem;
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
}
figcaption{
    margin: 1rem 1.5rem 0rem;
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: italic;
}

h3 {
    margin: 1.5rem 1.5rem 0rem;
    padding-top: 1rem;
	font-size: 1.25rem;
	color: rgb(255,131,0);
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
	text-transform: uppercase;
	letter-spacing: 0.1em; /*Just an extra tracking for bold uppercase letters. Try 0.1em */
    border-top: 2.5px solid rgb(255,131,0);  
}


ul {
	margin: 0rem 1rem 1.5rem;
    font-family: poppins, sans-serif;  
    font-weight: 500;  
    font-style: normal;
    padding: 0rem 0.5rem 0.5rem ;
}

ol {
    margin: 0rem 1rem 1rem;
    font-family: poppins, sans-serif;  
    font-weight: 500;  
    font-style: normal;
    padding: 0.5rem 0.5rem ;
}

li { 
	margin: 1rem 0rem;
}

footer {
	background-color: rgb(255,131,0);
	color: rgb(249,249,249);
	padding: 1rem 1.5rem 1rem;
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;

}

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

body{
    background-color: rgb(221, 218, 216);
}

main{
    grid-template-columns: repeat(2, 1fr);
    margin: auto;
    display: grid;
    padding: 2rem;
}





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