
@font-face {
	font-family: 'Kontiki';
	src: url('kontiki/kontiki.eot');
	src: url('kontiki/kontiki.eot?#iefix') format('embedded-opentype'),
		url('kontiki/kontiki.ttf') format('truetype');
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: inherit;
}

body {
	background: black url('img/bg.jpg') center no-repeat;
	background-size: cover;
	min-height: 100vh;
	color: white;
	font-family: 'Kontiki', sans-serif;
	text-align: center;
	position: relative;
}

.page::after {
	content: '';
	background-color: rgba(0, 0, 0, 0.2);
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

a {
	text-decoration: none;
}

.flexCenter {
   display: -webkit-flex; display: -ms-flex; display: flex;
   -webkit-align-items: center; -ms-align-items: center; align-items: center;
}

.page {
	background: url('img/border.png') center no-repeat;
	background-size: 100% 100%;
	min-height: 100vh;
}

.content {
	margin: 1em auto;
	position: relative;
	z-index: 10;
}

.logo img {
	max-width: 100%;
	max-height: 300px;
	margin: 0 0 32px;
}

@media (max-height: 800px) and (max-width: 800px) {
	.logo img {
		width: 20vw;
		height: auto;
		max-height: none;
		min-width: 100px;
	}
}

.title {
	font-size: 12vw;
}

.title a {
	display: block;
	transition: .4s;
}
.title a:hover {
	transform: scale(1.2);
}
.title a:active {
	transform: scale(.9);
}

@media (min-width: 600px) {
	.title {
		font-size: 62px;
	}
	.separator {
		display: inline-block;
		height: 1.2em;
		width: 2px;
		background: white;
		margin: 0 .5em -.2em;
	}
	.title a {
		display: inline-block;
	}
}

@media (max-width: 300px) {
	.title {
		font-size: 32px;
	}
}
