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

h1{
    background-color: rgb(254,136,0);
    font-family: Sutro, serif;  
    font-weight: 700;  
    font-style: normal;
    color: rgb(250,250,250,255);
    font-size: 2rem;
    padding: 2rem 1.5rem 0.5rem;
}

h2{
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
    font-size: 1.5rem;
    background-color: rgb(254,136,0);
    color: rgb(254, 221, 187);
    padding: 0.5rem 1.5rem 1.7rem;
}

figcaption{
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: italic;
    font-size: 1.25rem;
    color: rgb(44, 44, 44);
    padding: 1rem 1.5rem 1.5rem;
}

h3{
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
    font-size: 1.25rem;
    color: rgb(254,136,0);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin: 1rem 1.5rem 0rem;
    padding: 1rem 0rem;
    border-top: 2px solid rgb(255, 136, 0);
}

figure{
    display: grid;
    margin: auto;
    grid-template-columns: 80% 20%;
}

main{
    display:grid;
    margin: auto;
    padding: 2rem;
    grid-template-columns: repeat(2, 1fr);
}

ul{
    padding: 0.5rem 1.5rem 2rem;
}

ol{
    padding:0.5rem 1.5rem 2rem;
}

li{
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
    font-size: 1rem;
    color: rgb(44,44,44);
    padding: 0.5rem 0rem 0.5rem;
}

footer{
    background-color: rgb(254,136,0);
    color: rgb(255,255,255);
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
    padding: 1rem 1.5rem 1rem;
}

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

body{
    background-color: rgb(221, 221,221);
}
img {
    width: 100%; /*Please leave this line.*/
     display: block;
}
