body {
	margin: 0px;
}

div.container {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: fixed; display: table
 }
 
div.left {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	width: 400px;
	background-color: #ededed;
 }


div.right {
	display: table-cell;
	text-align: left;
	vertical-align: middle;
	padding: 0 50px;	
	max-width: 600px;
 }


div.social_icons {
	clear: both;
	margin: 0px auto;
	display: block;
}
 
.social_icons img {
	margin: 0px 5px;
	height: 25px;
	width: 25px;
	opacity: 0.5;
	filter: alpha(opacity=50); /* For IE8 and earlier */
 }

.social_icons a {
	cursor: pointer;
}
 
.social_icons a:hover img {
	opacity: 1;
	filter: alpha(opacity=100); /* For IE8 and earlier */
 }
 
#name {margin: 1em auto}
 
#headshot {
	border-radius: 90px;
	height: 180px;
	width: 180px;
 }
 
p {
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
	font-weight: 400;
	font-size: 13.5px;
	color: #807f7f;
	max-width: 600px;
 }
 
a {
	color: #626262;
	font-weight: 400;
	text-decoration: none;
	cursor: pointer;
 }
 
	a:hover {
		color: #47ced2;
		font-weight: 400;
	 }
	
	
	div.right .social_icons {
		display: none;
		visibility: hidden;
	}
 

@media (max-width: 799px) {
	div.container {
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		position: relative; 
		display: visible;
	 }
	
	div.left, div.right {
		display:block;
		clear: both;
		width: 100%;
	}
	
	div.left {
		padding-top: 40px;
	}
	
	div.right {
		width: 100%;
		max-width: 500px;
		margin: 0px auto;
		padding: 20px 0px;
	}
	
	div.right p {
		margin-right: 40px;
		margin-left: 40px;
	}
	
	div.left .social_icons {
		display: none;
		visibility: hidden;
	}
	
	div.right .social_icons {
		display: block;
		visibility: visible;
		margin: 30px 40px;
		text-align: center;
	}

	#headshot {
		height: 110px;
		width: 110px;
		clear: both;
		display: block;
		margin: 0px auto;
	}
	
	#name {
		margin: 5px auto;
	}
}