@import url(http://fonts.googleapis.com/css?family=Open+Sans:300);

body {
	height: 100%;
	width: 100%;
	background-color: #1d2d44;
	margin: 0px;
	padding: 0px;
	display: flex;
	justify-content: center;
	align-content: center;
}
p {
	padding: 0;
	margin: 0;
	text-align: center;
	color: white;
	font-size: 1.2em;
	font-family: 'Open Sans', sans-serif;
}

#content {
	flex: 1;
	padding: 0 0 25vh 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
}

#content div#heading {
	min-height: 10em;
	position: relative;
	flex: 1;

	display: flex;
    justify-content: center;
    align-items: center;
}
#content div#heading p {
	flex: 1;
}

#content div#logo {
	position: relative;
	flex: 20;

	background-image: url('logo.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

#content p#footer {
	margin-top: 25px;
	position: relative;
	flex: 1;
}