/* 
   Tree Works Style Sheet
   
   Author: Matthew C. McNutt
   Date:   11/13/2014
*/



/* Body styles */

body {
   background-image:url("images/tree-watermark.png");
   background-position:center center;
   background-repeat: no-repeat;
   background-size:42% 40%;
   font-family:Verdana, Geneva, sans-serif;
   line-height: 1.4em;
   
}


/* Heading styles */

section h1 {
   background-color: green;
   color: white;
   font-size: 1.7em;
   letter-spacing: 0.4em;
   line-height: 1.8em;
   text-indent: 1em;
}

h2 {
   background-color: rgb(0, 165, 0);
   color: "#00CC66";


   letter-spacing: 0.4em;
   line-height: 1.8em;
   text-indent: 1em;
   
}


/* Navigation list styles */

nav ul {
   color:#ffoooo;
   background-color:brown;
   line-height: 3.5em;
   list-style-type: none;
   padding-left: 0.5em;
}

nav ul li:hover {
   background-color: rgb(83, 142, 213);
}

nav ul li:first-of-type {
   text-transform: uppercase;
}

nav ul li a {
   color: white;
   text-decoration: none;
}





/* Footer styles */

footer address {
   background-color: rgb(55, 102, 55);
   color: white;
   color: rgba(255, 255, 255, 0.8);
   font: normal small-caps 0.8em/4em 'Times New Roman', Times, serif;
   text-align: center;
}


