body {
  padding: 0;
  margin: 0;
  background-color: #555;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-align: center;
}

button {
  color: white;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 3px;
  font-size: 16px;
  padding: 1em 2em;
  margin: 1em 0;
  display: inline-block;
  outline: none;
  cursor: pointer;
  min-height: 3em;
}

button:hover {
  background-color: rgba(0,0,0,0.3)
}

.gameConsole {
  display: flex;
  height: 100vh;
}

.gameConsole-center {
  flex: 5 0 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: auto;
  max-height: 100vh;
}

.gameConsole-side {
  flex: 1 0 200px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content: space-around;
  max-height: 100vh;
  overflow: auto;
}

.gameConsole-panel-right {
  justify-content: center;
}

.score-entry {
  margin: 1em 0;
}

input[type="text"] {
  padding: 0.5em;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid white;
}

.maze-col-panel {
  display: flex;
  flex-direction: column;
  align-items:center;
}

.maze-sa-panel {
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content: space-around;
}

.maze-sb-panel {
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content: space-between;
}

.hidden {
  display: none;
}

/* .js-colors {
  color: rgb(100, 237, 127);
  color: rgb(237, 100, 100);
  color: rgb(237, 237, 100); 
} */

