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


body {
	background-color: rgb(251, 249, 247);
	color: rgb(27, 24, 41);
	line-height: 140%;
	font-family: poppins, sans-serif;

}


footer {
    background-color: rgb(255, 120, 9);
    padding: 1.5rem;
    color: rgb(238, 236, 247);
}

li {
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
    margin: 1rem;
}

main {
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
    padding: 1rem 1rem 2rem 2rem;
    display: grid;
    grid-template-columns: 50% auto;
    
}

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

}


h1 {
    font-family: sutro, serif;  
    font-weight: 700;  
    font-style: normal;
	background-color: rgb(255, 120, 9);
	color: rgb(247, 241, 236);
	padding: 2rem 1rem 0rem;
	text-transform: normal;
    font-size: 2rem;
    line-height: 100%;
}

h2 {
    font-family: sutro, serif;  
    font-weight: 300;  
    font-style: normal;
	background-color: rgb(255, 120, 9);
	color: rgb(239, 201, 172);
	padding: 1rem 1rem 2rem 1rem;
	text-transform: normal;
    font-size: 1.5rem;
    line-height: 100%;
}

figcaption {
    font-family: poppins, sans-serif;  
    font-weight: 300;  
    font-style: italic;
    padding: 1rem 2rem;
}

h3 {
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
    padding: 1rem 0rem 1rem 0rem;
    text-transform: uppercase;
    color: rgb(255, 120, 9);
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    border-top: .2rem solid;
    margin: 1rem;



}

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