/* reset.css */

@font-face
{
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url('/file/quniverse/public/font/opensans.v40.woff2') format('woff2');
}

/* --- fonts --- */

* {
	padding: 0px;
	box-sizing: border-box;
	border: none;
	outline: none;
	text-decoration: none;
	overscroll-behavior: none;

	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;

	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;

	font-family: 'Open Sans', sans-serif;
}

body {
	min-width: 100%;
	width: 100vw;
	min-height: 100%;
	height: 100vh;
	padding: 0px;
	margin: 0px;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 0;
	overflow: hidden;
}

canvas {
	padding: 0px;
	margin: 0px;
	overflow: hidden;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 0;
}

input[type="text"],
div[contenteditable="true"] {
	user-select: auto;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
}

/* --- scrollbar --- */

::-webkit-scrollbar {
	width: 0px;
	height: 0px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.3);
}