/*
   Homework 7-4
   Beastly Gamer Style Sheet

   Filename:  styles.css
   Supporting Files: 

*/




body {
	width: 98%;
	min-width: 1100px; 
	background-image: url(back.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

body {
	border: 4px dotted yellow;
	
}

/* 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;
}

/* intro styles */
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;
}

section.intro p {
	display: block;
	font-size: 20pt;
	position: fluid;
	margin-top: 30px;
	margin-left: 100px;
	margin-right: 100px;
	
}


 

 
 /* photo styles */
 section.photo {
	width: 100%;
	min-width: 1100px; 
	
 }
 
 #photo1 img {
	 float: left;
	 margin-left: 250px;
	 
	
 }
 
 #photo2 img {
	 float: right;
	 margin-right: 250px;
	
 }
 
 /* box shadows */
 
 figure img {
	 -moz-border-radius: 25px;
	 -webkit-border-radius: 25px;
	 border-radius: 25px;

	 -moz-box-shadow: rgba(0, 0, 0, 0.6) 10px 10px 15px;
	 -webkit-box-shadow: inset rgba(0, 0, 0, 0.6) 10px 10px 15px;
	 box-shadow: rgba(0, 0, 0, 0.6) 10px 10px 15px;
 }
 
 /* rotate styles */
 
 figure#photo1 {
	 -o-transform: rotate(-10deg);
	 -moz-transform: rotate(-10deg);
	 -webkit-transform: rotate(-10deg);
	 -ms-transform: rotate(-10deg);
	 transform: rotate(-10deg);
 }
 
 figure#photo2 {
	 -o-transform: rotate(10deg);
	 -moz-transform: rotate(10deg);
	 -webkit-transform: rotate(10deg);
	 -ms-transform: rotate(10deg);
	 transform: rotate(10deg);
 }
 
 /*heading style */
 
 article h1 {
	 text-align: left;
	 font-family: Arial Black, Arial Bold, Gadget, sans-serif;
	 font-size: 20pt;
	 margin-left:80px;
	 margin-top: 400px;
	position: fluid;
 }
 
 /* video styles */
 article.videos {
	 min-width: 1300px;
 }
 
 article #video1 {
	 margin-left: 100px;
padding: 20px;	 
 }

article #video2 {
	float: right;
	margin-right: 100px;
	padding: 20px;
}

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