.title {
  text-align: center;
}

#winStatus {
  position: absolute;
  display: none;
  color: #fff;
  background: #000;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 30%;
  padding: 0.3em;
  font-size: 2em;
  z-index: 2;
}

#replayButton {
  position: absolute;
  right: 5em;
  top: 5em;
  background: #000;
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  border: none;
  border-radius: 25px;
  padding: 10px;
  width: 100px;
  cursor: pointer;
}

.board {
  margin: 4em auto;
  width: 25em;
  height: 25em;
}

.board tr td {
  width: 10em;
  max-width: 10em;
  max-height: 10em;
  height: 10em;
  border: 2px solid black;
  margin: 50px;
  cursor: pointer;
  background-color: #3e4250;
  border-color: #2c97a2;
  color: #fff;
}

.cell-value {
  height: 10em;
  width: 10em;
}

.cell-value p {
  position: absolute;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 55px;
  margin-left: 1.2em;
}

.board tr:first-child td {
  border-top: 0;
}

.board tr:last-child td {
  border-bottom: 0;
}

.board tr td:first-child {
  border-left: 0;
}

table tr td:last-child {
  border-right: 0;
}
