body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  font-family: Arial, sans-serif;
  background-color: rgba(0, 0, 0, 0.6);
}

H1 {
  align-items: center;
  color: #fff;
  font-size: 3em;
}	

#gameBoard {
  display: grid;
  grid-template-columns: repeat(7, 50px);
  grid-template-rows: repeat(6, 50px);
  gap: 5px;
}

#gameBoard div {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border: 1px solid #333;
  border-radius: 50%;
}

#gameInfo {
  margin-top: 20px;
}

#playerTurn {
  color: yellow;
  font-size: 2em;
}

#restartButton {
  font-size: 1.3em;
}

button {
  padding: 10px 20px;
  cursor: pointer;
}
