:root {
	--main-colour: #275495;
	--selection-colour: rgb(192, 39, 39, .25);
	--secundary-colour: #275495;
}

body {
	margin: 0;
	overflow: hidden;
	user-select: none;
}

canvas {
	height: 100%;
	width: 100%;
	background-color: black;
}

div#header {
	text-align: center;
	vertical-align: center;
	font-family: 'Sitka Text';
	font-size: 2.5vh;
	
	position: absolute;
	top: 2%;
	left: 0%;
	
	width: 100%;
	height: 5%;
}

div#coordinates {
	text-align: center;
	vertical-align: center;
	font-family: 'Sitka Text';
	font-size: 2.5vh;
	
	position: absolute;
	top: 3.5%;
	left: 0%;
	
	width: 100%;
	height: 5%;
}

div#sideDisplay {
	text-align: right;
	vertical-align: center;
	font-family: 'Sitka Text';
	font-size: 2.5vh;
	
	/*
	position: absolute;
	top: 0.75%;
	left: 93.5%;
	
	width: 12%;
	height: 5%;
	*/
	position: absolute;
	width: 100%;
	height: 100%;
	
	margin-right: 1.5%;
	
	line-height: 1vh;
}

div#bottomDisplay {
	bottom: 0.25%;
	position: absolute;
	z-index: 100;
}

/* MAIN MENU */

div#menu {
	position: absolute;
	width: 90%;
	height: 80%;
	top: 10%;
	left: 5%;
	
	z-index: 999;
	background: #fff;
	opacity: 0.6;
	
	border-radius: 10vh 5vh 10vh 5vh;

	text-align: center;
	font-size: 2vh;
	line-height: 1.5vh;
}

div.menuColumn {
	float: left;
	width: 33.33333%;
}

h1 {
	font-size: 2.85vh;
}
h2 {
	font-size: 2.25vh;
}
div#menu > p {
	font-size: 1.75vh;
}

input {
	height: 2vh;
	width: 30vh;
	font-size: 2vh;
	font-family: 'Sitka Text';
}

button {
	background-color: #EA4C89;
	border-radius: 1vh;
	border-style: none;
	box-sizing: border-box;
	color: #FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-family: "Sitka Text";
	font-size: 1.5vh;
	font-weight: 500;
	height: 3.5vh;
	line-height: 1vh;
	list-style: none;
	margin: 0.35vh;
	outline: none;
	padding: 0.5vh 2vh;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: color 100ms;
	vertical-align: baseline;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
}

button:hover {
  background-color: #F082AC;
}

/* MANUALLY INSERT NEW BODY MENU */
div#manuallyInsertNewBodyMenu {
	position: absolute;
	width: 40%;
	height: 80%;
	top: 15%;
	left: 30%;
	
	z-index: 999;
	background: #fff;
	opacity: 0.6;
	
	border-radius: 10vh 5vh 10vh 5vh;

	text-align: center;
	font-size: 2vh;
	line-height: 1.5vh;
}

/* HOVERBOXES */
div.hoverbox {
	z-index: 2;
	background: #eee;
	opacity: 0.7;
		
	position: absolute;
	
	width: 25%;
	
	border-radius: 0vh 2vh 2vh 2vh;
		
	text-align: center;
	font-size: 2.5vh;
	line-height: 0.5vh !important;
}
.hoverbox > h2 {
	font-size: 2.75vh !important;
	text-decoration: underline;
}

/* MENUS OF INDIVIDUAL BODIES */
div#bodyMenus {
	position: absolute;
	left: 0%;
	top: 0%;
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
}

div.menu {
	display: inline-block;
	
	z-index: 3;
	background: #eee;
	opacity: 0.5;
	
	padding: 0.5%;
	margin: 0.35%;
	
	width: auto;
	min-width: 20%;
	max-height: 40%;		
	
	position: relative;
	
	border-radius: 2vh 2vh 2vh 2vh;
		
	text-align: center;
	font-size: 2.5vh;
	line-height: 0.5vh !important;
}
.menu > img {
	draggable: false;
}
.menu > h2 {
	margin-bottom: 10%;
}
.adjustButton {
	background-color: #F082AC !important;
	border-radius: 1 !important;
	border-style: dotted;
	border-color: #EA4C89;
	box-sizing: border-box;
	color: #FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-family: "Sitka Text";
	font-size: 2.5vh !important;
	font-weight: 200 !important;
	height: 1.25vh !important;
	width: 6vh !important;
	line-height: 0 !important;
	list-style: none;
	margin: 0 !important;
	outline: none;
	padding: 0 !important;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: color 100ms;
	vertical-align: middle !important;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	all: initial;
}
.adjustButton:hover {
	background-color: #eee !important;
	opacity: 0.5 !important;
}
.menu > h2 {
	font-size: 2.75vh !important;
	text-decoration: underline;
}