*,
*::after,
*::before {
	box-sizing: border-box;
}

body {
	font-family: 'Jura', sans-serif;
	height: 100vh;
	background-color: black;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.intro {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow:auto;
	transition:0.5s;
}

#intro {
	
	top:0;
	left:0;
	transition:1s;
}

.overLays {
	z-index: 10004;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 100%;
	margin-top:0;
	background-color: black;
	overflow-x: hidden;
	transition: 1s;
	text-align:center;
	opacity:1;	
}
		
.location {
	position:absolute;
	bottom:10px;
	right:10px;
	font-size:12px;
}

.particles-button{
	font-size:22px;
}
@media screen and (min-width: 67em) {	
	.location {
		-webkit-writing-mode: vertical-rl;
		writing-mode: vertical-rl;
		font-size:14px;
	}
	.particles-button{
	font-size:24px;		
	}
}	
	
*, *:before, *:after {-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}
input, input:before, input:after{margin:0;padding:0;-webkit-touch-callout:initial;-webkit-user-select:initial;-khtml-user-select:initial;-moz-user-select:initial;-ms-user-select:initial;user-select:initial;}	
textarea, textarea:before, textarea:after{margin:0;padding:0;-webkit-touch-callout:initial;-webkit-user-select:initial;-khtml-user-select:initial;-moz-user-select:initial;-ms-user-select:initial;user-select:initial;}

.js .loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0.4;
	background: white;
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

main {
	position: relative;
	margin: 0 auto;
}

.grid__item {
	position: relative;
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: 100%;
	align-items: center;
	justify-items: center;
	overflow: hidden;
	padding: 4rem 1.5rem;
	background: black;
}