html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}
body {
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	position: relative;
	color: rgb(236, 240, 241);
	background: radial-gradient(ellipse at center, #59b3f0 0%, #3498db 100%);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

h1 {
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight: 300;
	text-shadow: rgba(0, 0, 0, 0.25) 1.1px 1.1px;
	font-size: 7vh;
	margin-bottom: 3vh;
	-webkit-animation: fade-in 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation-delay: 1.5s;
	-webkit-animation-delay: 1.5s;
}

a, p {
	font-size: 1.8vh;
}

a {
	color: inherit;
	text-decoration: none;
}

.speech-bubble {
	font-family: 'Leckerli One', cursive;
	position: absolute;
	display: inline;
	padding: 20px;
	top: 7vh;
	z-index: 2;
	left: 50vw;
	font-size: 3vh;
	background: #3e3e3e;
	border-radius: .8em;

	animation-name: fade-in-slide-out-right;
		-webkit-animation-name: fade-in-slide-out-right;
	animation-duration: 2s;
		-webkit-animation-duration: 2s;
	animation-delay: 2s;
		-webkit-animation-delay: 2s;
	animation-timing-function: linear;
		-webkit-animation-timing-function: linear;
	animation-iteration-count: 1, 1;
		-webkit-animation-iteration-count: 1, 1;
	animation-fill-mode: both, both;
		-webkit-animation-fill-mode: both, both;
}

	.speech-bubble:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 0;
		height: 0;
		border: 10px solid transparent;
		font-weight: 900px;
		border-top-color: #3e3e3e;
		border-bottom: 0;
		border-left: 0;
		margin-left: -10px;
		margin-bottom: -10px;
	}

header, .content {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

	header {
		height: 40vh;
		background-color: white;
			-webkit-animation: bounce-in-top 1.1s both;
	        animation: bounce-in-top 1.1s both;
	}

	.content {
		padding-top: 15vh;
	}

.main-photo-container {
	margin: 15vh 0;
	position: relative;
	width: 40vh;
	height: 35vh;
	border-bottom-right-radius: 200vw;
	border-bottom-left-radius: 200vw;
    display: inline-block;
    overflow: hidden;
    border: 8px solid white;
    background-color: white;
    z-index: 1;
}

	.main-photo-container img {
		position: absolute;
		top: 0vh;
		left: 15%;
		width: 70%;
	-webkit-animation: swing-in-bottom-fwd 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	        animation: swing-in-bottom-fwd 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	animation-delay: 1.1s;
	-webkit-animation-delay: 1.1s;
	}

p.description, p.experience {
	-webkit-animation: fade-in 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation-delay: 1.6s;
	-webkit-animation-delay: 1.6s;
	margin: 0;
}

p.description {
	font-size: 2.2vh;
}

p.experience {
	font-style: italic;
	margin-top: 10px;
}	

div.contact-options {
	margin-top: 3vh;

	-webkit-animation: fade-in 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;

	animation-delay: 2.6s;
		-webkit-animation-delay: 2.6s;
}

	.contact-options a:not(:first-child){
		margin-left: 5vw;
	}