/*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;
}
figure{
    display: grid;
    grid-template-columns: 75% 25%;
    margin-bottom: 2em;
}
h1 {
    padding: 1em 1.5em .2em 1em;
    background-color: rgb(252, 134, 0);
    color: rgb(250, 250, 250);
    font-weight: 600;
    font-family: Sutro, serif;
    font-size: 2em;
    font-style: bolder;
}
h2 {
    background-color: rgb(252, 134, 0);
    padding: 0.25em 1.5em 1em 1.4em;
    color: rgb(255,228,196);
    font-family: Sutro, serif;
    font-size:1.5em;
}
figcaption {
    padding: 1em 1.3em;
    font-family: poppins, sans-serif;
    font-style: italic;
    font-size: 1em;
    background-color: rgb(250, 250, 250);
    font-weight: 450;
    line-height: 1.6em;
}
h3 {
    color: rgb(252, 134, 0);
    padding: 0.5em 4em 1em 1.0em;
    font-family: Sutro, serif;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: .1em;
    background-color: rgb(250, 250, 250);
    font-size: 1.2em;
    border-top: rgb(252, 134, 0) solid;
}
ul {
    font-family: poppins, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1em;
    background-color: rgb(250, 250, 250);
    padding: 0em 2em 2em 1.5em; 
}
li {
    background-color: rgb(250, 250, 250);
    padding: .5em 0em;
}

ol{
    font-family: poppins, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1em;
    background-color: rgb(250, 250, 250);
    padding: 0em 2em 2em 1.5em; 
}

div.container{
    max-width: 70em;
    margin: auto;
    background-color: rgb(250, 250, 250)
}

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

main{
    display: grid;
    grid-template-columns: 50% 50%;
    margin: 2em;
 }

footer{
    padding: 1em;
    background-color: rgb(252, 134, 0);
    color: rgb(250, 250, 250);
}

section{
    padding: 1em;
}

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