/*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%; 
     display: block;

}

header{
    background-color: rgb(240,140,52);
    padding: 1em 1em 1em;
    grid-column: 1/3;
}

h1 {
    background-color: rgb(240,140,52);
	color: rgb(250,250,250); /* Same as body background. */
	font-size: 2em;
	padding: 1em 1em .25em; /* You want three values. */ 
	font-family: Sutro, serif;  
    font-weight: 700;  
    font-style: normal;
}

h2 {
	background-color: rgb(240,140,52);
	color: rgb(250,222,190);
	font-size: 1.5em;
	padding: 0em 1.5em 1em;
	font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;

}

figure{
   display: grid;
   grid-template-columns: 70% 30%;
   grid-template-rows: auto;
   padding-bottom: 1em;
}

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

figcaption{
    font-size: 1em;
    padding: 1em 1em .25em;
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: italic;
}

h3{
	padding-top: .5em;
	font-size: 1.5em;
	color: rgb(240,140,52);
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
	text-transform: uppercase;
    border-top: .1em solid rgb(240,140,52);
}

ul, ol {
	margin: .5em 1em .5em;
    grid-template-columns: repeat (2, 1fr);
    grid-template-rows: 3/4;
}

li { 
	margin: .5em .5em;
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
}


footer {
    
    background-color: rgb(240,140,52);
    color: rgb(250,222,190);
    font-size: 1em;
    padding: 1em 1.5em 1em;
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
    grid-column: 1/3;
    grid-row: 4/5;

}

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

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