/*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;
}
figcaption {
    margin: 1rem 1.3rem 2rem;
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: italic;
}
header {
    background-color: rgb(254, 125, 0);
    padding:2rem 1.3rem 1.3rem;
}
body{
    background-color: rgb(249, 249, 249);
    color: rgb(31,31,31)
}
h1 {
    color: rgb(249, 249, 249);
    font-size: 2rem;
    font-family: Sutro, serif;  
    font-weight: 700;  
    font-style: normal;
    padding-bottom: 0.7rem;
}
h2 {
    color: rgb(254, 216, 178);
    font-size: 1.3rem;
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
}
h3 {
    color: rgb(254, 125, 0);
    font-size: 1.2rem;
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin: 1.3rem 1.3rem 1rem;
}
ul, ol {
    padding: 0.3rem 0rem;
}
li {
    margin: 0rem 1.5rem 1rem;
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
}
footer {
    background-color: rgb(254, 125, 0);
    color: rgb(249, 249, 249);
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
    font-size: 1rem;
    padding: 1.2rem 1.3rem 1.2rem;
}
/*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. */
