:root {
	--bg-color: #222;
    --fg-color: #FFF;
}
body {
  font-family: sans-serif;
}

/* Make content area fill the entire browser window */
html,
.fullscreen {
  display: flex;
  flex-direction: vertical;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: var(--bg-color);
  color: var(--fg-color);
}

/* Center the content in the browser window */
.container {
  margin: auto;
  text-align: center;
}

.title {
  font-size: 3rem;
}

/* Navigation Bar at the top */
.topbar {
	border: 1px solid snow;
	position: fixed;
	width: 100%;
	display: flex;
	flex-direction: horizontal;
	justify-content: space-evenly;
}

/* Basic UI Elements */
a,a:visited {
	background-color: var(--primaryBgColor);
	color: var(--primaryFgColor);
}
