* {
	box-sizing: border-box;
}
html, body {
	margin: 0;
	width: 100%;
	background-color: #202020;
	color: #E0E0E0;
	font-family: sans-serif;
	min-height: 100vh;
}
div#world {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
main {
	max-width: 20cm;
	width: 100%;
}
h1 {
	text-align: center;
	margin-top: 0;
}
div.chart-bar {
	display: flex;
	text-align: center;
	border-radius: 20%;
}
div.chart-button {
	height: 3em;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #222;
	font-weight: bold;
	cursor: pointer;
	user-select: none;
	flex-direction: column;
	position: relative;
}
/* Color changes from hovering over poll options is done in barchart.js */
div.chart-button-aux {
	background-color: #EEE;
}
div.chart-button-aux:hover {
	background-color: #CCC;
}
div.chart-button-additional {
	position: absolute;
	top: -0.5em;
	right: 0;
	width: 100%;
}
div.chart-bar p {
	margin: 0;
}
div.chart-bar p.lbl-points {
	font-size: 0.67em;
}
p#close-time {
	font-style: italic;
	text-align: center;
}
div.corner {
	font-style: italic;
	position: fixed;
	top: 0;
	right: 1em;
	text-align: right;
}
h1 input {
	font-size: 1em;
	text-align: center;
	background: #313131;
	color: #FFF;
	border: 1px solid #808080;
	width: 100%;
	font-weight: bold;
}
a {
	color: #EEE;
}
