body {
  background-image: url("bg3.jpg");
  font-family: "Arial", sans-serif;
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


section {
  text-align: center;
}

.game--title {
  font-size: 100px;
  color: white;
  margin: 10px auto;
}

.game--container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  width: 310px;
  margin: 10px auto;
  background-color: #11213a;
  color: #04c0b2;
}

.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: white;
  margin: 20px auto;
}

.game--restart {
  font-family: "Permanent Marker", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  background-color: #f7e4ac;
  width: 200px;
  height: 60px;
  font-size: 30px;
  color: #5586e2;
  box-shadow: 2px 2px 2px 2px #d86c23;
  border: 2px solid #d86c23;
}