* {
	box-sizing: border-box;
}

body {
	font-family: 'PT Serif', sans-serif;
	font-size: 16px;
	line-height: 1.4;
	background: #000;
	color: #000;
	font-size: 16px;
	line-height: 1.4;
	margin: 0;
	padding-left: 12px;
	padding-right: 12px;
}

::-moz-selection {
	color: #fff;
	background: #000;
}

::selection {
	color: #fff;
	background: #000;
}

#everything,
#content-container {
	max-width: 1000px;
	margin: auto;
	z-index: 40;
	position: relative;
  background:#fff;
}

#content-container {
	max-width: 800px;
	padding-bottom: 5em;
	padding-left: 20px;
	padding-right: 20px;
}

a {
	color: #000;
}

header {
	padding-bottom: 20px;
}

header::after {
	content: '';
	display: block;
	clear: both;
}

#site-name {
	font-size: 3em;
	text-decoration: none;
	color: black;
	float: left;
}

#site-name:hover {
	text-decoration: underline;
}

#site-nav {
	float: right;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

@media screen and (max-width: 705px) {
	header {
		padding-bottom: 0;
	}
	#site-name {
		float: none;
		display: block;
		text-align: center;
	}
	#site-nav {
		float: none;
		text-align: center;
	}
}

.nav-item {
	display: inline-block;
	padding-left: 20px;
}

.nav-item:first-child {
	padding-left: 0;
}

.nav-item a {
	position: relative;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-decoration: none;
}

.fireworks {
	width:100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}

.border-box {
	background-color: #000;
	position: fixed;
	height: 100%;
	top: 0;
	bottom: 0;
}

.border-box.left {
	left: 0;
}

.border-box.right {
	right: 0;
}

.blob-cont {
	overflow: hidden;
	position: absolute;
	top: 0;
	height: 100%;
	width: 50px;
}

.blob-cont.left {
	left: 0;
}

.blob-cont.right {
	right: 0;
}

.blobs {
	width: 50px;
	height: 100%;
	position: fixed;
}

.blob {
	position: absolute;
	background-color: #000;
	transition: all .5s ease-in-out;
}

.blob:hover {
	-webkit-transform: scale(1.4);
	        transform: scale(1.4);
}

.blob:active {
	-webkit-transform: scale(0.9);
	        transform: scale(0.9);
}

@media screen and (max-width: 1027px) {
	.border-box {
		width: 5px !important;
	}
	
	.blob-cont {
		display: none;
	}
}

h1 {
	font-size: 2em;
}

h1,h2 {
	font-weight: bold;
	margin: 0;
	padding-top: 1em;
	padding-bottom: 1em;
}

p {
	margin: 0;
	padding-top: 0em;
	padding-bottom: 1em;
}

blockquote {
	position: relative;
	margin-left: 0;
	padding-left: 30px;
}

blockquote::before {
	content: '\201C';
	display: block;
	font-size: 60px;
	position: absolute;
	top: -11px;
	left: -9px;
}

img {
	max-width: 100%;
}

.my-face {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 2px solid black;
	float: left;
	margin-right: 20px;
	box-shadow: inset 0px 0px 20px rgba(0, 0, 0, .4);
	overflow:hidden;
	margin-bottom: 1em;
	transition: all .2s ease-in-out;
}

.my-face:hover {
	border: 3px solid black;
}

.my-face img {
	width: 200px;
	height: 200px;
	z-index: -2;
	position: relative;
}

.employment-period {
	float: right;
}

.results-tables {
	text-align: justify;
	letter-spacing: -0.31em;
}

.results-tables > * {
	letter-spacing: normal;
	text-align: left;
}

.results-tables:after {
	width: 100%;
	content: '';
	display: inline-block;
}

.results-table-cont {
	width: 48%;
	display: inline-block;
}

@media screen and (max-width: 680px) {
	
	.results-table-cont {
		width: auto;
		display: block
	}
}

.results-table {
	width: 100%;
}

th:last-child,
td:last-child {
	text-align: right;
}

.portfolio-item {
	padding-bottom: 20px;
}

.portfolio-item::after {
	content: '';
	display: block;
	clear: both;
}

.portfolio-item-image {
	float: left;
	padding-right: 10px;
}

@media screen and (max-width: 550px) {
	.portfolio-item-image {
		float: none;
		text-align: center;
		padding-right: 0;
	}
}



