@import url('https://fonts.googleapis.com/css?family=Montserrat:100,400');

body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 100;
	font-size: 10px;
	color: #fff;
	padding: 0;
	margin: 0;
	overflow: hidden;
	background-color: #212121;
}

.main {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	max-width: 80vw;
	height: 100vh;
	margin: auto;
	font-size: 1rem;
	text-align: center;

}

.main_content {
	position: relative;
	z-index: 999;
}

h1 {
	font-size: 4em;
	font-weight: 400;
	font-family: 'EB Garamond', serif;
}

h2 {
	font-size: 1.6em;
	font-weight: 400;
	margin-top: 0.5em;
}

p {
	font-size: 1em;
	line-height: 1.2;
	margin-top: 2em;
}

a {
	color: #fff;
	text-decoration: underline;
	transition: all 0.25s ease-in;
}

a:hover {
	text-decoration: none;
}

.background {
	position: absolute;
	top: -10%;
	left: -10%;
	width: 120%;
	height: 120%;
	z-index: 1;
	font-family: Courier;
	opacity: 0.55;
}

.cloud {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: auto;
	z-index: 1;
	opacity: 0.02;
}
@media screen and (max-width: 992px) {
    .background, .cloud {display: none;}
    .main {font-size: 0.7rem;}
    h2 {line-height: 1.5em;}
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	padding: 12px 0;
	text-align: center;
	z-index: 100;
	color: #fff;
	font-family: Courier;
}

.header h1 {
	font-size: 40px;
	font-weight: lighter;
}