/*
   Final Project

   Shark Unified Technologies Base Style Sheet
   Author: Robert Lemon
   Date:   11/23/14

   Filename: sutbase.css
   Supporting Files: 

*/

/* Display HTML5 structural elements as blocks */

article, aside, figure, figcaption, footer, hgroup, header, 
section, nav {
   display: block;
}


/* Set the default page element styles */

body * {
   font-family: Verdana, Geneva, sans-serif;
   font-size: 100%;
   font-weight: inherit;
   line-height: 1.2em;
   list-style: none;
   margin: 0px;
   padding: 0px;
   text-decoration: none;
   vertical-align: baseline;
}



/* Body Styles */
body {
   width: 95%;
   min-width: 900px;
   max-width: 1000px;
   font-family: Verdana, Geneva, sans-serif;
   font-weight: normal;
   font-size: 16px;
   margin: 0px auto;
   position: relative;
   border-left: 5px solid grey;
   border-right: 5px solid grey;
}



/* Style rule to add a vertical gradient to the background of the article element */

body {
   background: -o-linear-gradient(black, maroon 30%, black 90%);
   background: -ms-linear-gradient(black, maroon 30%, black 90%);
   background: -moz-linear-gradient(black, maroon 30%, black 90%);
   background: -webkit-linear-gradient(black, maroon 30%, black 90%);
   background: linear-gradient(black, maroon 30%, black 90%);
}



/* Header styles */

header {
   text-align: center;
   width: 100%;

   -o-background-size: contain;
   -moz-background-size: contain;
   -webkit-background-size: contain;
   background-size: contain;

   background-color: black;
   border-bottom: 5px solid Grey;
   border-top: 5px solid grey;
}

header img {
   Margin: 20px auto;
   width: 50%;
}


/*Navigation list styles */

header nav {
   float: center;
   width: 95%;
   margin: 20px auto 10px 16%;
}

header nav li {

   width: 13%;
   margin-top: 20px;
   margin-left: 1%;
   margin-bottom: 5px;
   float: left;
}

header nav li a {
   display: block;
   width: 100%;
   height: 50px;
   line-height: 50px;
   text-align: center;
   color: white;
   font-size: 0.8em;
   -moz-border-radius: 50px;
   -webkit-border-radius: 50px;
   border-radius: 50px;
   background-color: maroon;
   border: 2px solid grey;
}

header nav li a:hover {
   background-color: red;
}



/* Main Article Styles */
#main {
   float: right;
   width: 80%;
}



#main h1 {
   font-size: 2.5em;
   font-family: "Times New Roman", serif;
   font-weight: bold;
   font-style: italic;
   color: white;
   text-align: center;
   margin-top: 40px;
   margin-right: 23%;
}

#main p {
   font-size: 0.9em;
   color: white;
   margin: 10px 25% 20px 10px;
   text-align: center;
}



/* Footer Styles */

footer {
   border-top: 5px solid grey;
   border-bottom: 5px solid grey;
   background-color: maroon;
   clear: both;
   margin-top: 20px;
   padding: 10px 0px;
}

footer address {
   color: white;
   font-style: normal;
   font-size: 0.8em;
   text-align: center;
}