/*
   New Perspectives on HTML and CSS
 7-4 Final Project

   Dome Table Style Sheet
   Author: Amanda Duquet
   Date:   1/24/2016

   Filename: finalstyle.css
   Supporting files: 
*/

/*Body Style*/

body{
	background-color: black;
	color: white;
}


/*Nav Style*/

nav.vertical {
   width: 185px;
   float: left;
   font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

nav.vertical h1 {
   font-size: 24px;
   margin: 10px 0px 0px 20px;
   font-weight: bold;
   letter-spacing: 5px;
   color: yellow;
   
}

nav.vertical li {
   font-size: 16px;
   margin-left: 0px;
   margin-right: 10px;
   margin-bottom: 10px;
   letter-spacing: 0px;
   display: block;
   
}

nav.vertical li a {
   text-decoration: none;
   color: white;
   
}

nav.vertical li a:hover {
   text-decoration: underline;
   color: yellow;
   
}

/*Article Style*/

article figure {
   float: right;
   margin: 10px;
}

h2{
	color: lightblue;
}

p.intro{
	text-align: center;
}

/*Table Style*/

table{
	border-collapse: collapse;
	border-spacing: 5px;
	align: center;
}

table.center{
	margin-left: auto;
	margin-right: auto;
}

td{
	text-align: center;
	border: 1px solid yellow;
	padding: 15px;	
}

th{
	font-family: Times New Roman, Times, serif;
	border: 1px solid yellow;
	padding: 15px;	
	color: powderblue;
	
}



/*Footer Style*/

 position:fixed;
    bottom:0;
}