html,body{
	margin: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: row;
	font-family: Futura, Helvetica, sans-serif;
	overflow: hidden;
}
svg{
	height: 95%;
	width: 95%;
}
.column{
	flex: 1;
	display: flex;
	flex-direction: column;
}
.row {
	flex: 1;
}
#image-container{
	display: flex;
	width: 50vw;
	height: 50vh;
	justify-content: center;
	align-items: center;
	background-color: #ddd;
}
#code-container{
	height: 100%;
}
#simulator-container{
	width: 50vw;
	height: 50vh;
	background-color: #000;
	position: relative;
}
.CodeMirror {
	height: 100%;
	width: 50vw;
	overflow-x: scroll;
}
.CodeMirror-scroll {
	width: 50vw;
}
#console-container{
	position: absolute;
	z-index: 7;
	bottom: 0px;
	left: 0px;
	width: 50vw;
}
.console{
	width: calc(100% - 2rem);
	margin: 1rem;
	background-color: rgb(64, 98, 85);
	border-radius: 1em;
}
.console p {
	padding:1rem;
	color: #ddd;
	font-family: monospace;
}
.bottom-button{
	position: absolute;
	z-index: 8;
	bottom: 0rem;
	width: 3rem;
	height: 1.5rem;
	border-radius: 1.5rem 1.5rem 0 0;
	margin-left: -1.5rem;
	background-color: rgb(245, 89, 75);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	overflow: hidden;
	font-size: 70%;
}
.bottom-button p{
	margin: 0;
	margin-top: 0.5rem;
	padding: 0;
}
#save-code-button {
	left: calc(50vw - 2rem);
	bottom: 0rem;
	background-color: #f1c14f;
	color: rgb(64,98,85);
}
#save-image-button {
	right: 0.5rem;
	bottom: 0rem;
}
#question-button {
	position: absolute;
	z-index: 8;
	left: calc(50vw - 0.5rem);
	top: 0.5rem;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 0.75rem;
	margin-left: -1.5rem;
	background-color: rgb(64,98,85);
	color: #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	overflow: hidden;
	font-size: 70%;
}
#question-button p{
	font-family: sans-serif;
	margin: 0;
	padding: 0;
}
#simulator-controls {
	padding: 1em;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
	color: white;
}
#gpuMathCanvas, #fileSelector {
	display: none;
}
#fold-percent-slider {
	width: 100px;
}
