body {
	margin: 0;
	padding: 0;
}
div {
	padding: 0;
	margin: 0;
}
.container {
	font-family: "Fira Code", monospace;
	background-color: #1c2023;
	height: 100vh;
	width: 100vw;
	/* Grid stuff */
	overflow: hidden;
	display: grid;
	--grid-gap: 80px;
	grid-template-columns: 3fr 2fr 2fr;
	grid-template-rows: 1fr 1fr;
	grid-template-areas:
		"spider compass hexdump"
		"spider selection hexdump ";
	place-items: stretch center;
	justify-items: stretch;
	grid-gap: 60px 60px;
}

.container > div {
	background: #1c2023;
	border-radius: 5px;
	color: #c7ccd1;
}
.container > div h1 {
	margin-left: 1em;
}
.spidergraph {
	grid-area: spider;
}
.compass {
	grid-area: compass;
}
.selection {
	grid-area: selection;
}
.selection #selectionChart {
	max-height: 90%;
	height: 350px;
}
.hexdump {
	border-radius: 0;
	grid-area: hexdump;
	max-height: 100%;
	overflow-y: hidden;
}
#hexdump > p {
	margin: 0;
	padding: 0;
	overflow-y: hidden;
	font-size: 12px;
	line-height: 11px;
}
