@font-face {
    font-family: Montserrat;
    src: url(fonts/Montserrat-UltraLight.otf);
}

html, body {
	margin: 0;
	height: 100%;
	width: 100%;
}

article {
	background: url(../images/background.jpg) no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 100%;
}
article .wrapper {
	top: 50%;
	position: relative;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.wrapper .header {
	text-align: center;
	margin-bottom: 120px;
}

.wrapper .content {
	width: 75%;
	max-width: 660px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 90px;
}

.wrapper .content p {
	color: white;
	font-size: 21px;
	font-weight: 100;
	line-height: 32px;
	font-family: Montserrat;
}

.wrapper .button {
	text-align: center; 
}

.wrapper .button a {
	background-color: #64d1ff;
	border-radius: 33px;
	font-family: Montserrat;
	font-size: 18px;
	font-weight: 100;
	color: white;
	text-transform: uppercase;
	width: 190px;
	padding: 10px 0px 10px;
	text-decoration: none;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
	    -ms-transition: all 0.3s ease-in-out;
	     -o-transition: all 0.3s ease-in-out;
	        transition: all 0.3s ease-in-out;
}
.wrapper .button a:hover, .wrapper .button a:focus {
	background-color: #5C9DB9;
}

@media screen and (max-width: 768px) {
	.wrapper .header {
		text-align: center;
		margin-bottom: 70px;
	}
	.wrapper .content p {
		color: white;
		font-size: 18px;
		font-weight: 100;
		line-height: 26px;
		font-family: Montserrat;
	}
	.wrapper .content {
		width: 75%;
		max-width: 660px;
		margin: 0 auto;
		text-align: center;
		margin-bottom: 40px;
	}
}