body {
  box-sizing: border-box;
  margin: 0;
  background-color: tan;
}

stateful-client {
  display: flex;
  justify-content: center;
  margin-top: 100;
}

game-lobby {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 700;
  height: 700;
}

.gameList {
  flex-grow: 1;
  width: 100%;
  padding: 5px;
}

.gameInLobby {
  margin: auto;
  width: fit-content;
}

game-board {
  justify-content: center;
  align-items: center;
  background-color: tan;
  max-width: 700px;
  max-height: 700px;
}

.boardCanvas {
  width: 90%;
  height: 90%;
}
