body {
	background-color: #282828;
	background-image: url('../images/background.jpg');
	background-size: cover;
	background-position: top center;
	display: flex;
	align-items: stretch;
	justify-content: center;
	font-family: 'Lato', sans-serif;
	color: #fff;
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
	margin: 0;
	position: relative;
}

a {
	color: #fff;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 90%;
    margin: 0 auto;
}

.content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    width: 50%;
}

.harold {
	position: relative;
	display: flex;
	align-items: flex-end;
    width: 50%;
}

.harold img {
	max-height: 90vh;
    width: auto;
    max-width: 100%;
}

.logo {
		display: block;
}

.logo img {
	max-width: 100%;
	height: auto;
}

.contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.content p {
	margin: 2em 0;
}

.contact li {
	display: inline-block;
}

.contact li + li {
	margin-left: 1em;
}

.contact li .fa {
    color: #f8ac15;
    font-size: 1.2em;
    vertical-align: middle;
    margin-right: 0.25em;
}

@media only screen and (max-width: 767px) {
	.wrapper {
	    flex-direction: column;
	    align-items: center;
	    justify-content: flex-end;
	    max-width: 300px;
	}

	.content, .harold {
		width: 100%;
	}

	.content {
		margin: 2em 0;
	}
}