html {
	background: url(bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
    	background-position: center;
}
body {
	overflow-y: hidden;
	text-align: center;
	font-family: 'Alata', sans-serif;
}
a {
	color: #000;
	text-decoration: none;
}
.logo {
	width: 460px;
	margin-top: 3em;
}
.main {
	width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.blurb {
	font-family: 'Alata', sans-serif;
	font-size: 24px;
	line-height: 150%;
	color: #000000;
}
@media (max-width: 767px) {
	.blurb {
		font-size: 18px;
	}
	.logo {
		width: 300px;
	}
}