@font-face {font-family: 'TTBerlinerins-Grotesk';src: url('../webfonts/357E7E_0_0.eot');src: url('../webfonts/357E7E_0_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/357E7E_0_0.woff2') format('woff2'),url('../webfonts/357E7E_0_0.woff') format('woff'),url('../webfonts/357E7E_0_0.ttf') format('truetype');}

*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 18px;
}

body {
	margin: 0;
	--color-text: #000000;
	--color-bg: #000;
	--color-link: #000000;
	--color-link-hover: #000000;
	--color-alt: #000000;
	--color-info: #000000;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Fade effect */
.js body {
	opacity: 0;
	transition: opacity 0.3s;
}

.js body.render {
	opacity: 1;
}

/* Page Loader */
.js .loading::before,
.js .loading::after {
	content: '';
	position: fixed;
	z-index: 1000;
}

.js .loading::before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1) rotate3d(0,0,1,180deg);
		border-radius: 50%;
	}
}

/* ROOT FONT STYLES */
* {
  font-family: 'Lato', Helvetica, sans-serif;
  font-weight: 200;
  color: var(--color-text);
  line-height: 1.3;
}

p{
	font-family: 'Lato', Helvetica, sans-serif;
	margin: 0.5em 0 0;
}

h1{
	font-family: 'TTBerlinerins-Grotesk', Helvetica, sans-serif;
	line-height: 1em;
	font-size: 2vw;
	margin: 0;
}


a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: none;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

.content {
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: calc(100vh - 13rem);
	position: relative;
	justify-content: flex-start;
	align-items: center;
}

#app {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: fixed;
	top: 0;
	z-index: -1;
}

canvas {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 55em) {
	.menu {
		display: none;
	}
}

@media screen and (min-width: 53em) {
	.content {
		height: 100vh;
		justify-content: center;
	}
}

/* iPhone 6+ landscape */
@media screen and (max-width: 736px) and (orientation: landscape) {
	#logo1, #logo2, #logo3{
		left: initial;
		width: 50%;
	}
}