body {
	margin: 0px;
	color: #FFF;
	font-family: 'Quantico', sans-serif;
	text-shadow: 1px 1px #000;
	-webkit-text-shadow: 1px 1px #000;
	-moz-text-shadow: 1px 1px #000;
	width: 100%;
	height: 100%;
	background-size: cover;
}
.logo {
	position: absolute;
	width: 100%;
	text-align: center;
	max-height: 20%;
}
.logo img {
	float: none;
	margin: 50px auto;
	height: auto;
	max-width: 100%;
}
.content {
	position: absolute;
	width: 100%;
	padding: 10px 0px;
	top: 50%;
	transform: translate(0%,-50%);
	background: rgba(0, 0, 0, 0.3);
}
.text {
    position: relative;
    float: none;
    margin: 0 auto;
    width: 90%;
    text-align: center;
}
.text h1 {
	text-transform: uppercase;
	font-size: 100px;
	margin: 10px 0px;
}
.text h2 {
	text-transform: uppercase;
	font-size: 32px;
	margin: 10px 10px;
	display: inline;
	text-align: center
}

.text h3 {
	text-transform: uppercase;
	font-size: 28px;
	margin: 10px 10px;
	display: inline;
	text-align: center
}
.text hr {
	display: block;
	height: 1px;
	border: 0;
	border-bottom: 3px solid #FFF;
	margin: 1em 0;
	padding: 0; 
	-webkit-box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.75);
	box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.75);
}
.text p {
	font-size: 18px;
}
.button {
	float: left;
	width: 100%;
	text-align: center;
}
.button a {
	padding: 10px;
	display: inline-block;
	color: #FFF;
	text-decoration: none;
	border-radius: 5px;
	-webkit-box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.75);
	box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.75);
}
.socialMedia {
	text-align: center;
}
.socialMedia img {
	padding: 10px;
	height: 36px;
}
@media (max-width: 725px) {
	.content {
		top: 20%;
		transform: unset;
	}
	.text h1, .text h2 {
		text-align: center;
	}
	.text p {
		font-size: 16px;
	}
}