/*

	New Perspectives on HTML and CSS
	
	Final Project
	
	Starfish Designs
	
	Author:  Lisa Roy
	
	Date:    1/17/16
	
	Filename:  styles.css
	
*/


/* Styles for the body */

	body {
		background-color: #00FFFF;
		font-size: 100%;
		Font-family: Verdana, Geneva, sans-serif;
		width: 1000px;
	}


/* Styles for the navigation bar */

	nav ul li {
		float: left;
		display: block;
		text-align: center;
		width: 150px;
		height: 80px;
		padding: 15px;
		list-style-type: none;
	}	


/* Styles for the header1 */

	h1 {
		text-align: center;
		color: #3300CC;
		font-size: 3em;
		font-style: italic;
	}
	

/* Styles for the table */

	table {
		border: 5px solid black;
		width: 100%;
		background-color: white;
	}
	
	td {
		padding: 20px;
		margin-left: 10px;
		border-bottom: 3px solid black;
	}
	
	
/* Styles for the contact form */

	form {
		border: 5px solid black;
		padding: 20px;
		width: 900px;
		height: 300px;
	}
	
	
/* Styles for the form input */

	input {
		margin: 7px 0px;	
	}
	
	
/* Styles for the text area box on the form */

	textarea {
		height: 70px;
		width: 800px;
	}
	
	
/* Styles for the footer */

	footer {
		text-align: center;
		color: #3300CC;
		font-style: italic;
		margin-top: 60px;
	}
		
	}