body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  color: black;
}

#game {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.boards {
  display: flex;
  flex-wrap: wrap;
}
.board {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  grid-template-rows: 20% 20% 20% 20% 20%;
  cursor: pointer;
  position: relative;
  padding: 15px;
}

#players {
  display: none;
  visibility: hidden;
}
.numPlayersChoice {
  display: grid;
  grid-template-columns: 50% 25% 12% 12%;
}
.x {
  color: aliceblue;
  box-shadow: 0cqmax;
}

.player {
  padding: 100px;
  display: block;
  float: none;
}

.tile {
  color: currentColor;
  font-size: 14;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 0.1em solid black;
  border-left: 0.1em solid black;
  padding: 4px;
}

.right-border {
  border-right: 0.1em solid black;
}

.bottom-border {
  border-bottom: 0.1em solid black;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}
