html, body {
	height: 100%;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: normal;
	color: white;
	text-align: center;
	position: relative;
}

.wrapper {
	padding: 80px 10px;
}

body:before {
	content: "";
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-image: url(./background.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 1;
}

body:after {
	content: "";
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-image: url(./background2.jpg);
	background-color: #4a5d2f;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 2;
	mix-blend-mode: hard-light;
}

_:-ms-lang(x), body:after {
	opacity: 0.8;
}

h1 {
	font-weight: bold;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	line-height: 1em;
	position: relative;
	z-index: 9;
}

p {
	margin: 30px 0 0 0;
	padding: 0;
	position: relative;
	z-index: 8;
}

p:before {
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	margin: 0 auto 6px auto;
	background-image: url(./michigan.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}

.logo-wrapper {
	max-width: 466px;
	margin: 0 auto 40px auto;
}

.logo {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 100%;
	text-align: left;
	text-indent: -9999px;
	overflow: hidden;
}

.logo:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #084360;
	border-radius: 50%;
	mix-blend-mode: hard-light;
	z-index: 3;
}

_:-ms-lang(x), .logo:before {
	opacity: 0.8;
}

.logo:after {
	content: "";
	position: absolute;
	left: 2.5%;
	top: 2.5%;
	width: 95%;
	height: 95%;
	background-image: url(./logo.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	z-index: 4;
}

@media (min-resolution: 134dpi), (min-device-pixel-ratio: 1.4), (min--moz-device-pixel-ratio: 1.4), (-o-min-device-pixel-ratio: 1.4), (-webkit-min-device-pixel-ratio: 1.4) {
	.logo:after {
		background-image: url(./logo@2x.png);
	}
}
