html{ height:100%; }
body{
	width: auto;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 0;
	z-index: 0;
	min-height: 100%;

	background-color: #393C42;
}

/* Padding for the footer. Need more, add to height property */
body::after {
	content: '';
	display: block;
	height: 2em;
	padding: 1em 0em;
}

.container {
	max-width: none;
	margin: 0 auto;
	padding: 0 10px;
}

.image {
	position: absolute;
}

.imageOne{
	position: absolute;
	z-index: 0;
	right: 50%;
	top: 50%;
	transform:translate(50%, -12%);
	opacity: 0.05;
  	filter: alpha(opacity=05);
}

.imageTwo{
	position: absolute;
	z-index: 1;
	right: 50%;
	top: 50%;
	transform:translate(50%, -12%);
	opacity: 0.05;
  	filter: alpha(opacity=05);
}

.imageThree{
	position: absolute;
	z-index: 2;
	right: 50%;
	top: 50%;
	transform:translate(50%, 70%);

	
}

/* Main body properties */
.core {
	width: 100%;
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: center;
	background-color: #393C42;
}

.tab {
	background-color: #202226;
	overflow: hidden;
}

.tab a {
	float: right;
	display: inline;
	position: relative;
	right: 0em;
	color: #fff;
	text-align: center;
	padding: 1em 1.5em 1em 1.5em;
	text-decoration:none;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 14px;
}

.tab a:hover {
	background-color: #313338;
	font-weight: 700;
}

.tab a.active {
	background-color: #43484F;
	font-weight: 700;
}

/* main page body stuff */
.main {
	margin: 0;
	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, 25%);
}

.main h1 {
	color: #C4CBD1;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 70px;
	margin-top: 0;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.main p {
	color: #fff;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 14px;
	margin-top: 0;
	margin-bottom: 40px;
}

/* Project page body stuff */
.projects_container {
	position: relative;
	align-items: flex-start;
 	flex-wrap: wrap;
  	max-width: 1350px;
  	height: 100%;
  	width: 100%;
}

.projects_container h1 {
	color: #D7DFE5;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 44px;
	margin-top: 0;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.projects_container h2 {
	color: #C4CBD1;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 32px;
	margin-top: 0;
	margin-bottom: 6px;
}

.projects_container p {
	color: #C4CBD1;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	padding: 0 32px;
	margin-bottom: 22px;
}

#box {
	clear: both;
	width: 100%;
}

#float_container {
	color: #C4CBD1;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 22px;
}

.projects_container a:link {
	color: white;
}

.projects_container a:visited {
	color: white;
}

.projects_container a:hover {
	color: lightgrey;
}

#floated_left {
	float: left;
	width: 640px;
	margin-right: 70px;
	margin-bottom: 14px;
}

#floated_right {
	float: right;
	width: 640px;
	margin-left: 70px;
	margin-bottom: 14px;
}

/* biography info and formatting, min width is picture width * 2? */
.bio {
	padding-top: 3em;
	padding-bottom: 4em;
	min-width: 1020px;
	max-width: 1020px;
}

.bio .col {
	float: left;
	width: 50%;
	font-family: 'Raleway', sans-serif;
	text-align: left;
}

.bio h1 {
	color: #F6F6EB;
	font-weight: 600;
	font-size: 23px;
	text-transform: uppercase;
	padding: 0 8px;
}

.bio h2 {
	color: #F6F6EB;
	font-weight: 400;
	font-size: 23px;
	text-transform: uppercase;
	padding: 0 8px;
}

.bio h3 {
	color: #F6F6EB;
	font-weight: 400;
	font-size: 35px;
	text-transform: uppercase;
	padding: 0 8px;
	border: 2px solid #F6F6EB;
	border-radius: 5px;
	text-align: center;
}

.bio p {
	color: #C4CBD1;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	padding: 0 32px;
	margin-bottom: 22px;
}

.footer {
	display: flex;
	width: 100%;
	padding: 1em 0em;
	bottom: 0;
	height: 2em;
	background-color: #202226;
	z-index: 2;
	color: #fff;
	width:100%;
	position: absolute;
}

.footerbox{
	text-decoration:none;
    border-width: 0px;
	position: absolute;
	align-content: center;
	right: 50%;
	transform:translate(50%, 0%);
}

.footer a {
	padding: 8px 0px;
	text-decoration: none;
}

/* Fancy divider lines */
.left_divider {
	display:block;
	border:none;
	color:white;
	height: 2px;
	background:#D7DFE5;
	background: -webkit-gradient(radial, 50% 50%, 0, 0% 50%, 900, from(#D7DFE5), to(#393C42));
}

.right_divider {
	display:block;
	border:none;
	color:white;
	height: 2px;
	background:#fff;
	background: -webkit-gradient(radial, 50% 50%, 0, 0% 50%, 900, from(#393C42), to(#D7DFE5));
}

.mid_divider {
	display:block;
	border:none;
	color:white;
	height: 2px;
	background:#D7DFE5;
	background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 600, from(#D7DFE5), to(#393C42));
}