/*
Color scheme for this website:
	#4312AE	
	#472B83	
	#280671	
	#7446D7	
	#8E6DD7
	
Unit 3 > Module 4 > Lesson 2

Students are exploring the box model 
by added padding, border, margin, color, background-color, and width
(and possibly other properties) to various elements.

They also add table-related styles, 
which affects the display of the table in accessibility.html
(in this example CSS file, the table styles appear at the bottom)

*/
body {
	font-size: 1em;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	background-color: #8E6DD7;
	color: #FFFFFF;
	margin-left: 10%;
	margin-right: 10%;
}
h1, h2 { 
	font-family: Palatino, Georgia, serif;
}
h1 {
	font-size: 1.8em;
	font-weight: bold;
	text-align: center;
	text-shadow: 4px 4px 4px black;	
}
h2 { 
	font-size: 1.4em;
	color: #CCCCCC;
}
div { 
	border: 1px solid black;
	padding: 1em;
	margin: 1em;
	background-color: #4312AE;
}
p { 
	font-style: italic;
	background-color: #7446D7;
	margin: 1em;
	padding: 1em;
}
a { 
	color: #FFFFFF;
}

/* table styles */
/* for accessibility.html */

table { 
	margin: 0 auto; /* this is a trick for centering certain elements */
	background-color: black;
}
th, td { 
	background-color: white;
	color: black;
	padding: 0.75em;
	margin: 1px;
}
caption { 
	font-weight: bold;
	font-size: 1.2em;
	margin: 0.75em;
}