@media only screen and (max-width : 799px) {
	body { font-size: 0.6em; }
}
@media only screen and (min-width : 800px) {
	body { font-size: 0.7em; }
}
@media only screen and (min-width : 1000px) {
	body { font-size: 0.8em; }
}
@media only screen and (min-width : 1600px) {
	body { font-size: 0.9em; }
}

* {
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	box-sizing: border-box;
	overflow: hidden;
	scroll-behavior: smooth;
}
body {
	background: var(--c10);
	color: var(--c2);
	position: fixed;
	display: block;
	font-family: 'Nunito', sans-serif;
	/* font-family: 'Muli', sans-serif; */
	/* font-family: 'Lato', sans-serif; */
	/* font-family: 'Hind', sans-serif; */
	width: 100%;
	height: 100%;
}
::-webkit-scrollbar {
	width: 8px;
	height: 90%;
}
::-webkit-scrollbar-track {
	background: rgba(200,200,200,0.5);
	border-radius: 10px;
}
::-webkit-scrollbar-thumb {
	background: rgba(200,200,200,1);
	border-radius: 5px;
}
li {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#testEnvironment {
	z-index: 99998;
	position: fixed;
	background: #F00;
	width: 15em;
	color: #EEE;
	font-size: 0.8em;
	font-weight: bold;
	display: block;
	text-align: center;
	margin-left: -4.6em;
	margin-top: 1em;
	-webkit-transform: rotate(-35deg);
	-ms-transform: rotate(-35deg);
	transform: rotate(-35deg);
}
