html, body {
	padding: 0;
	margin: 0;

	height: 100%;


	color: white;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 24px;

	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	text-shadow: 0px 3px 0px rgba(0, 0, 0, 0.25);
}

h1, h2, h3, h4, h5, h6{
	font-family: 'Lato', cursive;
	margin-bottom: 0;
	text-transform: uppercase;
}
h1{
	font-size: 2rem;
}

.page{
	width: 100%;
	min-height: 100%;

	position: relative;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.page::before{
	display: block;
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background: rgba(25, 25, 25, .65);
}

.container{
	position: relative;
	z-index: 2;

	width: 70%;
	max-width: 880px;

	padding: 20px;

	border: 4px solid white;
	text-align: center;
}

.call-to-action{
	display: block;
	position: absolute;

	top: 100%;
	left: 50%;

	transform: translate(-50%, -50%);

	background: white;
	color: black;
	text-decoration: none;
	padding: 10px 15px;
	text-shadow: none;
	border: 2px solid white;

	white-space: nowrap;
}
.call-to-action:hover{
	background: black;
	border-color: white;
	color: white;
	white-space: nowrap;
}