body {
  font-family: "Arial", sans-serif;
}

section {
  text-align: center;
}

.game--title {
  font-size: 100px;
  color: maroon;
  margin: 10px auto;
}

.game--container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  width: 320px;
  margin: 10px auto;
  background-color: black;
  color: white;
}

.cell {
  font-family: "Permanent Marker", cursive;
  width: 100px;
  height: 100px;
  box-shadow: 2px 2px 2px 2px #ecd7ba;
  border: 2px solid #ecd7ba;
  cursor: pointer;
  line-height: 100px;
  font-size: 60px;
}

.game--status {
  font-size: 50px;
  color: maroon;
  margin: 20px auto;
}

.game--restart {
  background-color: #f95c5c;
  width: 200px;
  height: 50px;
  font-size: 25px;
  color: #21df4f;
  box-shadow: 2px 2px 2px 2px #5b0505;
  border: 2px solid #5b0505;
  cursor: pointer;
}
