/*
   New Perspectives on HTML and CSS
   Module 7
   Final Project

   Courtney Beaton Style Sheet
   Author: Cynthia Beaton
   Date:   January 21, 2016
   
   

   Filename:         court.css
   Supporting Files     
 
 */  

/* Body styles */

body    {  
 
background-color:  rgb(128,0,128);
text-align: center;

}

p{
	color: rgb(255,255,255);
}



/* Heading styles */

h2 {
	
	color: rgb(255,255,255);
	text-align: center;

}

h3{
	color: rgb(255,255,255);
	text-align: center;
	
}

/* Multimedia control styles*/

audio, video{
	background-color: white;
	display: block;
	margin: 5px auto;
	text-align: center;
	width: 50%;
}
/* Rotate styles*/

figure#photo1{
	
	-o-transform: rotate: (30deg);
	-o-moz-transform: rotate: (30deg);
	-webkit-transform: rotate: (30deg);
	-ms-transform: rotate: (30deg);
	transform: rotate: (30deg);
}

/* Horizontal Navigation List Styles */

nav.horizontalNAV{
	margin-left:13%;	
	width:66%;
}

nav.horizontalNAV li{
	font-size:95.5%;
	float:left;
	position:center;
	padding:20px 0px;
width:20%;}
	


nav.horizontalNAV li a{
color:rgb(255,255,255);	
}

nav.horizontalNAV li a:hover{
color:black;	
}

/* Footer Styles*/
p{

	color:rgb(255,255,255);
	



	









