/** Main styles & console **/

/* Font import */
@font-face {
	font-family: Quiver;
	src: url(../font/quiver.ttf) format("truetype")
}

/* Text selection color */

::selection {background-color: rgba(0, 0, 0, 0.2)}
::-moz-selection {background-color: rgba(0, 0, 0, 0.2)}

body {
	margin: 0;
	background-color: #000;
	user-select: none;
	cursor: default;
	font-family: Quiver, sans-serif
}

main {display: none}

input, button {font-family: Quiver, sans-serif}

#console {
	display: none;
	width: 250px;
	height: 400px;
	margin: auto;
	padding: 8px;
	top: 8px;
	right: 8px;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	cursor: default;
	font-size: 20px;
	z-index: 999
}

.console-title {
	margin-bottom: 20px;
	text-align: center
}