* {
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
  	font-optical-sizing: auto;
  	font-style: normal;
}

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

a {
	color: inherit;
	text-decoration: none;
}

.site-wrapper {
	width: 100%;
	min-height: 100vh;
	padding: 10vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #1B1B1B;
	color: #fff;
	position: relative;
}

.logo {
	max-width: 480px;
	width: 80%;
	height: auto;
	margin: 0;
	display: block;
}

.headline {
	font-size: 48px;
	font-weight: 300;
	text-transform: uppercase;
	margin: 32px 0 48px;
	text-align: center;
}

.info {
	font-size: 20px;
	font-weight: 300;
	margin: 0;
	text-align: center;
}

.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #000;
}

.footer p {
	text-align: center;
}

.container {
	max-width: 1440px;
	widows: 90%;
	margin-left: auto;
	margin-right: auto;
}