html {
	min-height: 100%;
}
p {
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: "ScalaSans-Regular";
	src: url("OpenSans-Regular.ttf") format('truetype');
}
@font-face {
	font-family: "ScalaSans-Light";
	src: url("OpenSans-Light.ttf") format('truetype');
}

body {
	margin: 0;
	padding: 0;

	background: url("background-1920x1080.jpg") no-repeat center center fixed;
	background-repeat: no-repeat;
	background-size: cover;
}
@media (max-width: 1280px) {
	body {
		background-image: url("background-1280x720.jpg");
	}
}
@media (min-width: 1281px) and (max-width: 1920px) {
	body {
		background-image: url("background-1920x1080.jpg");
	}
}
@media (min-width: 1921px) {
	body {
		background-image: url("background-4k.jpg");
	}
}

main {
	width: 100%;
	height: 280px;

	text-align: center;

	position: fixed;
	top: 50%;
	margin-top: -140px;
}
p.title {
	color: #fff;
	font-size: 110px;
	line-height: 60px;
	font-variant: small-caps;
	text-transform: capitalize;
	font-family: "ScalaSans-Regular";
	text-shadow: 0px 1px 3px rgba(0, 0, 0, .8);
	word-break: break-all;
	padding-bottom: 30px;
}
p.subtitle {
	color: #fff;
	font-size: 50px;
	font-family: "ScalaSans-Light";
}

hr {
	margin: 30px auto;
	width: 800px;
}

a.get {
	color: #fff;
	font-size: 20px;
	text-decoration: none;
	font-family: "ScalaSans-Light";
	text-transform: uppercase;
	transition: .2s ease;
}
a.get:hover {
	color: #bbb;
}

/* Smartphone Shit */
@media (max-width: 480px) {
	body {
		background-image: url("background-1920x1080.jpg") !important;
	}
	p.title {
		font-size: 80px;
	}
	p.subtitle {
		font-size: 30px;
	}
}
@media (max-width: 800px) {
	hr {
		width: 95%;
	}
}