@font-face{
	font-family: "Roboto Condensed";
	src: url(/static/RobotoCondensed-VariableFont_wght.ttf) format("truetype");
}

html, body {
  height: 100%;
}

body {
	font-family: 'Roboto Condensed';
	background-color: black;
	color: white;
	text-align: center;
	display: flex;
	flex-direction: column;
}

a {
	color: white;
}

img {
	max-width: 80%;
}

form hr {
	width: 50%;
}

tr:nth-child(even) {
	background-color: darkslategray;
}

.content {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
  font-size: smaller;
}

.logo {
	max-height: 20%;
	max-width: 30%;
}

.emphasis {
	font-style: italic;
	font-size: larger;
}

.error {
	padding: 0.2em;
	background-color: salmon;
	font-size: larger;
}

.center {
	margin-left: auto;
	margin-right: auto;
}

.selected {
	background-color: darkslategray;
}

.smaller{
	font-size: smaller;
}


