:root {
	--bg: #111;
	--hover_bg: #1a1b26;
	--titles: white;
}

html, body {
	/* position: relative; */

	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	user-select: none;

	display: flex;
	justify-content: center;
	align-items: center;

	background-color: var(--bg);
}

body {
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	transform: scale(1.3);
}

a:visited {
	/* color: rgb(0,80,160); */
	text-decoration: none;
}
