/*
   Homework 7-4
  beastly thoughts Style Sheet

   Filename:  btstyles.css
   Supporting Files: 

*/
body {
	min-width: 1100px; 
	width:100%;
}

body {
	background-image: url(back.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	
}

/* Header Styles */

header img{
   width: 100%;

 
}

header nav {
   position: fluid;
   top: 190px;
   width: 100%;
   z-index: 2;
}

header nav ul li {

   display: block; 
   float: left; 
   width:13%;
   margin: 0px 5px;
   text-align: center;
}

header nav ul li a {
   display: block;
   border: 1px solid red;
   width: 100%;
   background-color: black;
   color: white;
}

header nav ul li a:hover {
   color: red;
}

/* body styles */

body {
	border: 4px dotted yellow;
	min-width: 1100px;
}

h1 {
	position: fluid;
	display: block;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 40pt;
	color: red;
	margin-top: 50px;
	text-align: center;
	font-style: italic;
	text-shadow: 2px 2px black;
}

p {
		display: block;
	font-size: 18pt;
	position: fluid;
	margin-top: 30px;
	margin-left: 100px;
	margin-right: 100px;
}
table td{
	padding-left:80px;
}


 
 /* button styles */
 .myButton {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #ce0100));
	background:-moz-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background:-webkit-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background:-o-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background:-ms-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background:linear-gradient(to bottom, #fe1a00 5%, #ce0100 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100',GradientType=0);
	background-color:#fe1a00;
	-moz-border-radius:9px;
	-webkit-border-radius:9px;
	border-radius:9px;
	border:2px solid #d83526;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:12px;
	font-weight:bold;
	padding:5px 21px;
	text-decoration:none;
	text-shadow:-1px 3px 0px #b23e35;
}
.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ce0100), color-stop(1, #fe1a00));
	background:-moz-linear-gradient(top, #ce0100 5%, #fe1a00 100%);
	background:-webkit-linear-gradient(top, #ce0100 5%, #fe1a00 100%);
	background:-o-linear-gradient(top, #ce0100 5%, #fe1a00 100%);
	background:-ms-linear-gradient(top, #ce0100 5%, #fe1a00 100%);
	background:linear-gradient(to bottom, #ce0100 5%, #fe1a00 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ce0100', endColorstr='#fe1a00',GradientType=0);
	background-color:#ce0100;
}
.myButton:active {
	position:relative;
	top:1px;
}

.myButton {
	padding-bottom: 10px;
}

/* footer */
footer {
	display: block;
	height: 20px;
	width: 90%;
	border-top-style: dotted;
	border-top-color: gray;
	padding: 10px;
}