/* This is the css file for Day 1 */

body {
    font-family: Arial, Helvetica, sans-serif;
    color: snow;
    background-color: black;
    font-size: medium;
}

/*Link styling START.  Added "ul" so this styling only applies to items in the list and not elsewhere on the document.  */

ul 
a:link {
    font-weight: bold;
    text-decoration: none;
    color: firebrick;
}

a:vistied {
    color: green;
    font-size: 2rem;
    font-weight: normal;
}

a:hover {
    color: blue;
    text-decoration: underline;
    background-color: white;

}

/*Link styling STOP*/

blockquote {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1rem;
    font-style: italic;
    text-align:center;
}

cite {
    font-size: 1.5rem;
}


h1 {
    border: 5px solid black;
    text-align: center;
}

img {border: 10px solid lightgrey;}



/* DEFINED CLASSES */

.bigbold {
    font-weight: bold;
    font-size: 1.3rem;
}
.bluebackground {
    background-color: aliceblue;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

a.garden:visited {
    color:green;
}