html, body {
  margin: 0;
  padding: 0;
  font-family: monospace;
  overflow: hidden;
  background-color: black;
  color: white;
  text-align: center;
}
h1 {
	font-size: 4em;
}
a, a:visited {
	color: #ff0066;
}
a:hover {
	color: #00ff66;
}
.popupContainer {
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.popup {
	font-size: 1.5em;
	border-radius: 2px;
	background-color: #000000;
	width: 600px;
	padding: 20px;
	cursor: default;
}
.popup h2 {
	margin-top: 0;
	color: #ff0066;
}
.popup input {
	font: monospace;
	font-size: 0.75em;
	color: white;
	background-color: #ff0066;
	border: 1px solid white;
	border-radius: 2px;
	padding: 5px 20px;
	cursor: pointer;
	font-weight: bold;
}
.popup input:hover {
	border: 1px solid white;
}
#fury {
  display: block;
	width: 100%;
	height: 100vh;
  /* Pixelated Canvas Settings */
  /* image-rendering: crisp-edges;*/ /* Firefox */
  /* image-rendering: -moz-crisp-edges;
  image-rendering: optimizespeed;
  image-rendering: pixelated;*/ /* Chrome */
}
