@charset "UTF-8";
body {
 	font-family: 'EB Garamond', serif;
	background: #FFFFFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.oneColFixCtr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

ul li {
	display: inline;
}
ul {
	padding: 0;
}



/*text*/
.name {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  padding-right: 455px;
}

.resume, .portfolio {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding-right: 20px;
}

.contact {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

p#head {
	padding-bottom: 10px;
	border-bottom: solid 1px #000000;  
}

p.resume, p.portfolio, p.contact {
	font-size: 20px;
}

/*a states*/
.resume a, .portfolio a, .contact a, .name a {
	color: #000000;
	text-decoration: none;
}

.resume a:hover {
	color: #c4122F;
}

.portfolio a:hover {
	color: #701370;
}

.contact a:hover, .name a:hover {
	color: #F79727;
}

/* heads */
h1.resume {
	color: #c4122F;
	font-size: 50px;
	padding-bottom: 10px;
}
h1.portfolio {
	color: #701370;
	font-size: 50px;
	padding-bottom: 10px;
}
h1.contact {
	color: #F79727;
	font-size: 50px;
	padding-bottom: 10px;
}