html, body {
	width: 100%;
	height: 100%;
	margin: 0;
}

* {
	font-family: Arial, Helvetica, sans-serif;
}

#container {
	padding: 20px;
	width: 60%;
	min-width: 800px;
	margin: auto;
	background: #f8f8f8;
}

.inputSection {
	display: flex;
	margin-bottom: 10px;
}

.inputGroup {
	display: flex;
	flex-direction: column;
	width: 200px;
}

.inputGroup input {
	width: 150px;
	padding: 5px;
}

.inputSection label {
	font-variant: small-caps;
	font-weight: bold;
	color: #555;
}

#backToMain {
	color: grey;
	display: block;
}

button {
	font-variant: small-caps;
	border: none;
	cursor: pointer;
	background: none;
	display: inline-flex;
	align-items: center;
	margin-right: 10px;
	font-size: 1.15em;
	padding: 10px 20px;
	transition: 0.2s;
	border: 1px solid #ddd;
	background: #ddd;
	border-radius: 5px;
}

button:hover {
	background: #ccc;
}

.icon {
	margin-right: 5px;
	width: 16px;
	height: 16px;
	filter: invert(0.3);
}

.matchControlLabel {
	font-variant: small-caps;
	font-weight: bold;
	color: #555;
}

.matchControl {
	font-size: 30px;
	font-weight: bold;
}

.matchControlButton {
	width: 20px;
	height: 20px;
	cursor: pointer;
	filter: opacity(0.7);
}