body {
	font-family: "Auro" !important;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	-webkit-touch-callout: none;
	  -webkit-user-select: none;
	   -khtml-user-select: none;
	     -moz-user-select: none;
	      -ms-user-select: none;
		      user-select: none;
}
@font-face {
	font-family: "Auro";
	src: url('../ft/Auro-Light.otf');
}
@media screen and (max-width: 800px) {
	.logo img {
		max-width:90%;
	}
}
.content {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
}
.logo {
	text-align:center;
}
.logo img {
	max-width:60%;
}
.nav-zone {
	text-align:center;
	margin-top:10vh;
}
.nav-button {
	padding: 1.5rem 3.5rem 1.5rem 3.5rem;
	color:#fff;
	font-weight:700;
	font-size:1.2rem;
	background-color:#ef7a73;
	border:3px solid #ef7a73;
	letter-spacing: .2rem;

	background-position: center;
	transition: background 0.8s;
}
.nav-button:hover {
	cursor:pointer;
	border:3px solid #ef7a73;
	background-color:#fff;
	color:#ef7a73;
	font-weight:bold;

	background: $grey-light radial-gradient(circle, transparent 1%, $grey-light 1%) center/15000%;
}
.nav-button:active {
	background-color: #ef7a73;
	background-size: 100%;
	transition: background 0.1s;
}
.title {
	text-align:center;
	margin-top:10vh;
	font-size:2rem;
	color:#88888C;
}