html {
	font-size: 10px;
}

@media screen and (min-width: 320px) {
	html {
		font-size: calc(10px + 6 * ((100vw - 320px) / 680));
	}
}
@media screen and (min-width: 1000px) {
	html {
		font-size: 16px;
	}
}

html, body {
	height: 100%;
}

body {
	margin: 0em;
	padding: 0em;
	display: flex;
	align-items: stretch;
}

#fullscreenContainer {
	width: 100%;
	padding: 1em;
	display: flex;
	align-items: stretch;
	flex-direction: column;
}

.header {
	display: flex;
	flex-direction: row;
}

.headerItem {
	flex: 1;
	display: flex;
	justify-content: center;
}

.headerItem.right > div {
	margin-left: auto;
}

.headerItem.left > div {
	margin-right: auto;
}

#plot {
	align-self: center;
	width: 100%;
	height: 100%;
	
	/*
	resize:both;
	overflow: auto;
	border: 1px solid;
	*/
}
