body {
  background: #222;
  color: #eee;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}
/*
canvas {
  width: 100%;
  height: auto;
}
*/
#topBar {
  margin-bottom: 10px;
}

#info {
  margin-top: 10px;
  font-size: 14px;
  max-width: 600px;
}

.teamToggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.teamToggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.teamToggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--team0-color, red);
  transition: .2s;
  border-radius: 24px;
}

.teamToggle .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .2s;
  border-radius: 50%;
}

.teamToggle input:checked + .slider {
  background-color: var(--team1-color, blue);
}

.teamToggle input:checked + .slider:before {
  transform: translateX(22px);
}

/* Mobile only */
/*
@media (max-width: 768px) {
  canvas {
    width: 100%;
    height: 100%;
    /*display: block;*/
  }
}
*/