/* CSS Document used for the Web Project 1 assignment
Author: Karla Daehnert
Course: ITWP 1000
File: styles.css
Information on using external CSS style sheet is located in Chapter 3. Information on media queries is located in Chapter 7. Information on tables and CSS formatting for tables is located in Chapter 8.
*/
nav  {
	text-align: center;
	font-style: italic
}
body {
	margin-top: 1em;
	margin-bottom: auto;
	font-family: Georgia, serif;
	background-color: FloralWhite;
}
h1 {
	text-align: center;
	font-size: 2.5em;
}
h2 {
	text-align: left;
	padding: 0.2em;
	font-size: 1.5em;
	border-bottom: 1px solid black;
}
h3 {
	text-align: left;
	padding: 0.2em;
	font-size: 1.3em;
}
p {
	margin: 10px;
	padding: 3px;
	line-height: 1.5em;
}
footer {
	text-align: center;
	font-style: italic
	color: DimGray
}
/* ID that centers the validation text */
#validation{
text-align: center;
margin-top: 1em;
}
/* table formatting
*/
table {
	margin: auto;
	border: 5px solid #3f2a14;
	width: 100%
	border-spacing: 0;