*
{
	font-family: monospace;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html
{
	width: 100%;
	height: 100%;
}

canvas
{
	min-width: 0;
	min-height: 0;
}

body
{
	width: 100%;
	height: 100%;
	padding: 1em;
	display: grid;
	grid-gap: 1em;
	grid-template-rows: minmax(0, 1fr);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-areas: "instructions plotter";
	align-items: stretch;
	justify-items: stretch;
	align-content: stretch;
	justify-content: stretch;
}

body > *
{
	width: 100%;
	height: 100%;
	border: none;
	outline-color: dodgerblue;
	outline-style: solid;
	outline-width: thin;
	outline-offset: 0;
}

#instructions
{
	grid-area: instructions;
	resize: none;
	overflow: scroll;
/*
	white-space: nowrap;
*/
}

#plotter
{
	grid-area: plotter;
	object-fit: contain;
}
