/*
   New Perspectives on HTML
   Module 4

   ICI Text and Color Styles
   Author: Jay Phillips	
   Date: 5/6/16  

   Filename:         terror.css
   Supporting Files: none

*/

body 
{
	background-color: black;
	color: grey;
	font-family: "Century Gothic", sans-serif;
	top-margin: 50px;
	padding: 100px;
	
}
header img
{
	
	display: block;
    	margin-left: auto;
   	margin-right: auto;
}

.menu 
{	
	display: block;
	text-align: center;
    	margin-left: auto;
   	margin-right: auto;
}

.menu ul
{
display: inline-table;

margin: auto;
padding: 10px;
}


.menu li 
{
	
	display: table-cell;
	list-style-image: none;
	list-style-type: none;
	text-align: center;
	vertical-align: middle;
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
}

.menu a 
{
	  
	text-decoration: none;
	font-weight: bold;
	color: rgb(0, 26, 102);
	font-size:  24px;
	letter-spacing: 0px;
	
}

.menu a:hover 
{
	color: rgb(230, 230, 230);
	font-weight: bold;
	font-variant: small-caps;
	font-size: 28px;
} 