/*
	Tutorial 6
	Case 4

	Millennium Computers
	Author: Taylor Sears
    Date:   8/6/15

    Filename: 			mill.css
    Supporting files:	mclogo.jpg, go.png, 
						stop.png, oform.css
*/

/* Header styles */

header {
   float: left;
   width: 100%;
   clear: left;
   text-indent: 10px;
   text-align: center;
   background: rgba(177,177,177,50);

   -o-background-size: contain;
   -moz-background-size: contain;
   -webkit-background-size: contain;
   background-size: contain;

   border-bottom: 2px solid white;
}

header img {
   float: left;
   width: 100%;
}

header h1 {
   font-size: 2.5em;
   font-family: Verdana, Geneva, sans-serif;
   font-weight: bold;
   color: rgb(0, 69, 233);
   letter-spacing: 7px;
   text-align: center;
}

header article {
	width: 70%;
	margin: 10px;
	padding-left: 150px;
	color: rgb(0,69,233);
	font-weight: bold;
}

/*Navigation list styles */

header nav {
   float: left;
   width: 100%;
   margin: auto;
   padding-top: 5px;
}

header nav li {
   display: block;
   width: 13%;
   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.9em;
   -moz-border-radius: 50px;
   -webkit-border-radius: 50px;
   border-radius: 10px;
   background-color: black;
   text-decoration: none;
   text-transform: uppercase;
   font-weight: bold;
}

header nav li a:hover {
   background-color: rgb(235, 235, 66);
}

/* Body 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 {
   background: black url("index.png") top left repeat;
   width: 95%;
   min-width: 900px;
   max-width: 900px;
   font-family: Verdana, Geneva, sans-serif;
   font-weight: normal;
   font-size: 16px;
   margin: 15px auto;
   position: relative;
   border-left: 2px solid white;
   border-right: 2px solid white;
   border-top: 2px solid white;
   padding: 0px;
}

/* Section styles */

section {
   clear: both;
   padding-left: 155px;
   background: rgba(177,177,177,50);
   text-align: left;
   margin: auto;
}

div {
	padding-left: 115px;
}

div p {
	padding-left: 10px;
}

/* Footer Styles */

footer {
   border-top: 2px solid white;
   border-bottom: 2px solid white;
   background: rgba(177,177,177,50);
   clear: left;
   padding: 10px 0px;
}

footer address {
   color: rgb(255, 255, 255);
   font-style: normal;
   font-size: 0.8em;
   text-align: center;
}