body,html {
	margin: 0px;
	padding: 0px;
	background: #000000;
	overflow: hidden;
}

#canvas {
	position: absolute;
	z-index: 0;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

#navbar {
	position: absolute;
	z-index: 1;
	right: 0px;
	top: 0px;
	width: 45em;
	height: 5em;
	display: inline-block;
	float: left;
	border-radius: 2.5em 0 0 2.5em;
	background-color: rgba(200, 200, 200, 0.125);
	margin: 1vw 0 1vw 1vw;
	box-shadow: 5px 20px 30px -5px rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
	border-top: 2px solid #DDD;
	border-bottom: 2px solid #222;
}

#link {
	font-family: "Ubuntu";
	font-weight: bold;
	font-size: 1.5em;
	float: left;
	list-style-type: none;
	padding-right: 5vw;
	text-align: justify;
	line-height: 2em;
}

a {
	color: rgb(225, 225, 225);
	text-decoration: none;
}

a:hover {
	color: rgb(255, 150, 45);
	transition: color 350ms linear;
}