/*
Color scheme for this website:
	#4312AE
	#472B83
	#280671
	#7446D7
	#8E6DD7

Unit 3 > Module 5 > Lesson 1

No change to the CSS file in this lesson
but students add id and class attributes to elements in their index.html file
Style will be added to these classes and ids in the next lesson

*/
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;
}
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;
}