body {
	min-height: 100%;
	
	margin: 0;

	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-align-items: flex-end;
	justify-content: flex-end;
	
	font-family: Lato, sans-serif;
	
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .8);
	
	position: relative;
	
}

html {
	height:100%;
	min-height:100%;
}

.overlay, .background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .8);
}

.background {
	background-image: url('assets/bg.jpg');
	background-size: cover;
}


.intro {
	color: white;
	padding: 0 30px;
	position: relative;
	max-width: 580px;
	width: 100%;
	box-sizing: border-box;
	line-height: 1.6;
	padding-bottom: 30px;
}

.intro h1 {
	font-family: 'Droid Serif', serif;
	font-size: 3em;
	font-weight: normal;
	margin-bottom: 20px;
}

.intro h2 {
	font-weight: normal;
}

.intro strong {
	color: #00de90;
}

a:visited, a {
	color: #00de90;
}

.skills {
	width: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
}

.skillWrapper {
	position: relative;
	margin-right: 30px;
	margin-bottom: 30px;
}

.skillWrapper label {
	color: white;
	text-align: center;
	display: block;
	position: absolute;
	top: 36%;
	width: 100%;
}