html, body {
  background-color: black;
  color: white;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  overflow: hidden;
}

#content {
  width: 100%;
  height: 100%;
}

canvas {
  display: block; /* remove scrollbars */
}

#debug {
  left: 0;
  top: 0;
  position: fixed;
  white-space: pre-wrap;
}

.screen,.screenlike {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.screenwrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#screen,#screen2 {
  pointer-events: none;
}

#choosePlayer {
  -background-color: red;
  -opacity: 0.5;
}

.hflex {
  display: flex;
  flex-direction: row;
}

.vflex {
  display: flex;
  flex-direction: column;
}

.fluid {
  flex: 1;
}
.flexcenter {
  align-self: center;
}

#choosePlayer .player {
  flex: 1;
  align-self: center;
  text-align: center;
}

#roundEnd #round_end_results {
  font-size: 2em;
}

.hint_text {
  margin-top: 10em;
  margin-right: 0.5em;
  margin-left: 0.5em;
  text-align: center;
  padding: 0.25em;
  font-size: 2em;
}

.hint_text.shown {
  opacity: 0.75;
  background-color: #524;
  border-radius: 5px;
}

.all_ready, .ready {
  color: #8F8;
  font-weight: bold;
}
.not_ready {
  color: red;
}