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

header {
    background-color: rgb(255, 119, 0);
}

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

h1 {
    color: rgb(250, 250, 250);
    font-family: Sutro, serif;
    font-weight: bold;
    font-size: 1.8rem;
    padding: 2rem 2rem 1rem 2rem;

}

h2 {
    color: rgb(250, 220, 190);
    font-family: Sutro, serif;
    font-size: 1.5rem;
    padding: 0rem 2rem 1.5rem;

}

h3 {
    color: rgb(255, 119, 0);
    font-family: Sutro, serif;
    font-size: 1.2rem;
    padding: 1rem 1rem 0rem;
    text-transform: uppercase;

}

figcaption {
    color: rgb(0, 0, 0);
    font-family: poppins, sans-serif; 
    font-style: italic;
    font-size: 0.9rem;
    padding: 1rem 1rem;
    font-weight: 400;  

}

ul {
    color: rgb(0, 0, 0);
    font-family: poppins, sans-serif; 
    font-size: 0.9rem;
    font-weight: 400;
    padding: 1rem 1.5rem;
    list-style-type: disc;

}

li {
    padding-bottom: 1rem;
}

ol {
    color: rgb(0, 0, 0);
    font-family: poppins, sans-serif; 
    font-size: 0.9rem;
    font-weight: 400;
    padding: 1rem 1.5rem;
    list-style-type: decimal;

}

footer {
    font-family: poppins, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgb(250, 250, 250);
    background-color: rgb(255, 119, 0);
    height: 3.5rem;
}

p {
    padding: 1rem 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. */
