html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  background: black;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: monospace;
}

a {
  color: #999;
}

a:visited {
  color: #999;
}

#header {
  position: relative;
  height: 75px;
}

.footer {
  position: relative;
  height: 30px;
  color: #666;
  padding: 10px 30px;
  font-size: 80%;
}

#contentContainer {
  position: relative;
  display: flex;
  flex: 1;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

#mazeContainer {
  width: 100%;
  height: 100%;
  position: relative;
}

canvas {
  margin: auto;
  image-rendering: pixelated; /* Ensures pixelated scaling */
  image-rendering: crisp-edges; /* For better compatibility */
}

.optionsButton {
  border: 0;
  font-size: 11px;
  color: #090;
  text-align: center;
  background-color: #000;
  font-family: monospace;
}

.optionsButton:hover {
  color: #0E0;
}

.optionsButton:active {
  color: #0F0;
}

#options {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: rgba(0, 0, 0, .8);
  border-radius: 5px;
  color: #0C0;
}

#options legend {
  color: #CCC;
}

#options form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#options fieldSet {
  border-color: #CCC;
}

#options fieldSet.fullWidth {
}

#options .splitContainer {
  display: flex;
  gap: 10px;
}

#options fieldSet.split {
  flex: 1;
}

#options fieldSet.twoCol {
  column-count: 2;
  column-gap: 10px;
}

.skipButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  background-color: rgba(0,0,0, .6);
  color: #00CC00;
  font-size: 20px;
  font-weight: bold;
  padding: 5px 20px;
  border-radius: 5px;
  border: none;
  font-family: monospace;
}

.skipButton:hover {
  color: #0E0;
}

.skipButton:active {
  color: #0F0;
}
 .notifier {
   color: #666;
   font-size: 11px;
   text-align: right;
 }
