body {
	margin: 0;
	padding: 0;
	font-family: 'Consolas', sans-serif;
	overflow: hidden;
	color: #fff;
}

canvas {
	display: block;
}

#go_home {
	position: absolute;
	left: 20px;
	top: 100px;
	display: flex;
	gap: 7px;
	border-radius: 5px;
	padding: 15px;
	cursor: pointer;
	border: 2px solid #fff;
}

a>#go_home_car {
	text-decoration: none;
	color: #000;
	font-size: 16px;
}

#go_home_car {
	position: absolute;
	left: 20px;
	top: 20px;
	display: flex;
	gap: 7px;
	border-radius: 5px;
	padding: 15px;
	cursor: pointer;
	border: 2px solid #000;
}

a>#go_home {
	text-decoration: none;
	color: #fff;
	font-size: 16px;
}

#coordinates {
	position: absolute;
	left: 20px;
	top: 20px;
	display: flex;
	gap: 7px;
}

#author {
	position: absolute;
	right: 20px;
	top: 20px;
	display: flex;
	gap: 7px;
}

.coordinate {
	width: 40px;
	height: 40px;
	border-radius: 5px;
	font-weight: bold;

	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

#CoorX {
	color: #e6611d;
	border: 2px solid #e6611d;
	/* box-shadow: 0px 0px 20px 0px #e6601dbb inset; */
}

#CoorY {
	color: #4ddc2b;
	border: 2px solid #4ddc2b;
}

#CoorZ {
	color: #227ed7;
	border: 2px solid #227ed7;
}

#how_to {
	position: absolute;
	left: 20px;
	bottom: 20px;
	display: flex;
}

#how_to ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 10px;
}

#hints_view li:nth-child(3),
#hints_view li:nth-child(4) {
	rotate: -90deg;
}

#hints_edit li:first-child {
	margin-left: 20px;
}

#hints_view,
#hints_edit {
	transform: translateX(0);
	transition: all 0.6s ease-out;
}

#hints_view.hidden,
#hints_edit.hidden {
	transform: translateX(-1700px);
}

#how_to_btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: solid 2px #fff;
	font-size: 21px;
	cursor: pointer;
	margin-right: 20px;
}

.key-hint {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 7px;
	border: solid 2px #fff;
	font-size: 21px;
}

#hints_edit .key-hint {
	border: dashed 2px #fff;
}

/* Centered and big beautiful menu */
#menu {
	position: absolute;
	padding: 20px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	height: 400px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0px 0px 20px 0px #afafafbb;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#menu h5 {
	color: #e6611d;
	font-size: 30px;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
}

#menu p {
	color: #686868;
	font-size: 20px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 30px;
}

#menu button {
	width: 300px;
	height: 50px;
	border-radius: 10px;
	border: none;
	background-color: #e6611d;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
}

#menu button:hover {
	background-color: #e6601d;
}

#menu>a {
	text-decoration: none;
	color: #e6611d;
	font-size: 20px;
	margin-top: 20px;
}