/*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;
    display: grid;
    background-color: rgb(250, 250, 250);
}

main{
    display: grid;
    grid-template-columns: auto auto;
}

figure{
    display: grid;
    grid-template-columns: 61em 14em
}

body{ 
    background-color: rgb(205, 204, 204);
    color: rgb(5, 5, 5);
    line-height: 150% ;
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
    
}

h1{
    background-color: rgb(252, 133, 22);
    color: rgb(250, 250, 250);
    font-family: Sutro, serif;  
    font-weight: 700;  
    font-style: normal;
    font-size: 2em;
    padding: 2.5rem 1.5rem 0rem;
    letter-spacing: 0.05em;
    line-height: 2.5rem;
}

h2{
    background-color: rgb(252, 133, 22);
    color: rgb(250, 222, 191);
    padding: 0.75rem 1.5rem 2rem;
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
    font-size: 1.25em
}


h3{
    margin: 1.5em 0.5em 0.5em; 
	font-size: 1.5em;
	color: rgb(252, 133, 22);
    text-transform: uppercase;
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
    letter-spacing: 0.05em;
    padding-top: 0.75em;
    border-top: solid;
}

figcaption{ 
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: italic;
    margin: 0.5em, 0.5em, 0.5em;
    padding: 1.5em 1.75em;
}

ul{
    margin: 1rem;
    padding: 0em 0.5em 0.5em;
}

ol{
    margin: 1rem;
    padding: 0em 0.5em 0.5em;
}

li{
    padding: 0.5em 0.5em 0.5em;
}

footer{
    background-color:rgb(252, 133, 22);
    margin-top: 2em;
    padding: 1rem;
    color:rgb(250, 250, 250)
    
    
}


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