/* Set colors for the page */
body{
    background-color: ivory;
    color: rgb(35, 21, 19); /* this is the font color*/
    padding: 10%;
}

/* create styles for the h1 tag */

/* Sample - pick your own colors and settings. Make sure to include the ; at the end of the line */

h1{
    color: rgb(35, 21, 19);
    font-family: 'Inter',
        sans-serif;
    font-size: xx-large;
    text-align: center;
}


/* create styles for the h2 tag */
h2 {
    color: rgb(35, 21, 19);
    font-family: 'Inter',
        sans-serif;
    font-size: medium;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* create styles for the h3 tag */
h3 {
    color: rgb(35, 21, 19);
    font-family: 'Inter',
        sans-serif;
    font-size: small;
    text-align: left;
        padding-top: 10px;


}

/* create styles for the p tag */

p {
    color: rgb(168, 0, 0);
    font-family: 'Inter',
        sans-serif;
    font-size: smaller;
    text-align: left;
    padding: 10px;
}


img{
    width: 30%;
    display: block;
    margin: 10px auto;
    padding: 15px;
    
    
    /* this set of 3 commands centers. 10px is spacing top and bottom, auto is left and right*/
}

blockquote {

    background-color: rgb(236, 226, 214);
    border-left: 4px solid #fb0000;
        /* A nice green color */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        padding: 15px;
        border-radius: 10px;

}

cite {

    font:bold;
    color:rgb(192, 0, 0);
}