/*CSS Reset*/
@import url('cssReset.css');

/*Bringing in a Webfont*/
@import url('https://fonts.googleapis.com/css?family=Ubuntu');

body{
	font-family: 'Ubuntu', sans-serif;
	background-color: #ccc;
}

div {
	width: 960px;
	background-color: #fff;
	padding:10px;
	margin: 5px auto;
}

h1, h2 {
	color: #ef3412;
}

blockquote {
	margin-left:50px;
	margin-right: 100px;
}

.indent {
	text-indent: 50px;
}
.bold {
	font-weight: bold;
	font-style: italic;
}

table {
	text-align: center;
	margin: auto;
}

ul, ol {
	margin-left: 50px;
}

/* Nav */
nav ul {
  list-style-type: none;
}
nav a {
	text-decoration: none;
}
nav a:hover, nav a:visited {
	color: #662244;
}

nav a:hover{
	text-decoration: underline;
}
