.game-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
  width: 500px;
  height: 500px;
  background-color: #333;
  margin: auto auto;
  margin-top: 50px;
  padding: 90px;
  background-color: lightgreen;
  border-radius: 10%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.ui-box {
  display: grid;
  grid-template-columns: 1fr 100px 90px;
  width: 680px;
  height: 70px;
  margin: auto auto;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
  background-color: lightblue;
  border-radius: 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.text {
  margin: 0;
  margin-left: 90px;
  padding: 0;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  color: #2b2b2b;
}

.cell {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 150px;
  font-weight: bold;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 150px;
  min-width: 160px;
  min-height: 160px;
  box-sizing: border-box;
}

.cell:hover {
  background-color: #f0f0f0;
}

button {
  background-color: #e5e5e5;
  color: rgb(57, 57, 57);
  border: solid 2px red;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

button:hover {
  background-color: #d7d7d7;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

button:active {
  background-color: #7d7d7d;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
