* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

textarea:focus, input:focus, select:focus, button:focus, option:focus{
	outline: none;
}

input[type=text],
input[type=submit],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select,
option {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	border: none;
	outline: none;

	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}

body {
	width: 100%;
	height: 100%;
	font-size: 1em;
	box-sizing: border-box;
	line-height: 1.5em;
	background-color: white;
	color: black;
	position: relative;
	font-family: 'Montserrat', sans-serif;
}

html {
	box-sizing: border-box;
	height: 100%;
}

.content {
	height: 100vh;
	width: 100%;
	background-color: #000;
	position: absolute;
}

.middle-content {
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}

.middle-content img {
	width: 550px;
	margin: 0 auto;
	display: block;
}

.middle-content h1 {
	font-weight: 700;
	text-align: center;
	margin-top: 5px;
	color: #fff;
	font-size: 15em;
	letter-spacing: 2px;
	line-height: 100%;
}

.middle-content h2 {
	font-weight: 400;
	font-size: 1.4em;
	text-align: center;
	margin-top: 30px;
	color: white;
	letter-spacing: 5px;
	padding: 15px;
	margin-bottom: 50px;
	text-transform: uppercase;
}

.middle-content a {
	color: #fff;
	font-weight: 700;
	text-align: center;
	font-size: 1.2em;
	padding-bottom: 10px;
	border-bottom: 2px solid white;
}

@media all and (max-width: 1700px) {
	.middle-content h1 {
		font-size: 10em;
	}
}

@media all and (max-width: 1200px) {
	.middle-content h1 {
		font-size: 5em;
	}
}


@media all and (max-width: 600px) {
	.middle-content h1 {
		font-size: 3em;
	}
}