/* 
   IT 270 Final Project
   Tri-County Alarms Website

   Tri-County Styles
   Author: Kaylie Bowen
   Date:   03/14/16
*/


/* Nav List Styles */

ul {
   list-style-type: none;
   margin: 0;
   padding: 0;
   width: 200px;
   background-color: #f1f1f1;
   position: relative;
}

li a {
   display: block;
   color: #000;
   padding: 8px 0px 8px 16px;
   text-decoration: none;
}

li a:hover {
   background-color: #555;
   color: white;
}

.active {
   background-color: #4CAF50;
   color: white;
}

/* Body Styles */

body {
     background-color: rgb(128, 128, 128);
     p {
       font-family: Impact, Charcoal, sans-serif;
       color: white;
     }
      
}


/* Image Styles */

div img {
   position: relative;
}
/* Footer Style */

footer {
   text-align: center;
   position: fixed;
   left: 0px;
   bottom: 0px;
   height: 30px;
   width: 100%;
}