@font-face {
	font-family: 'no-continue';
	src: url('../assets/fonts/no-continue.ttf');
}

:root {
	--margin: 8px;
	
	--trasparent-black: hsla(0, 0%, 0%, .6);
}

html, body {
    width: 100%;
    height: 100%;

    margin: 0;
	overflow: hidden;

	font-family: "no-continue";
	
	user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;

	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.game-wrapper {
	position: absolute;
	left: 0;
	top: 0;

	width: 100%;
	height: 100%;

	opacity: 0;

	z-index: 0;
}

input {
	position: absolute;

    width: 0;
    height: 0;

    opacity: 0;
}