/* 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.  */

nav ul {
    list-style-type: none;
}
nav li {
    width: 10rem; 
    background-color: gray;
    text-align: center;
}

nav a {
    font-size: 1.5rem;
    color: black;
}

ul 
a:link {
    font-weight: bold;
    text-decoration: none;
    color: firebrick;
}

a:visited {
    color: green;
    font-size: 2rem;
    font-weight: normal;
}

a.garden:visited {
    color:green;
}
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;
    color: black;
    font-size: 5rem;
}



/* STYLING FOR TEST PARAGRAPHS */


.box1 {
    border: 5px orange dotted;
}
.intro1 {
    padding-left: 2rem;
    padding-right: 4rem;
    width: 50%;
}
.intro2 {
    padding-left: 2rem;
    padding-right: 4rem;
    width: 50%;
}

.hobbypics {
   height: 5rem; 
   width: 5rem;
}