body {
  background-color: #cbf0fd;
}

.game__title {
  font-size: 2.5rem;
  font-weight: 600;
}
@media only screen and (min-width: 992px) {
  .game__title {
    font-size: 3.25rem;
  }
}
.game__title-img {
  width: 10%;
}
@media only screen and (min-width: 992px) {
  .game__title-img {
    width: 7%;
  }
}
.game__moves-display {
  width: 25%;
  border: #1f1f1f 1px solid;
  border-radius: 10px;
  background-color: #ffffab;
  box-shadow: 2px 2px 5px #1f1f1f;
}
@media only screen and (min-width: 992px) {
  .game__moves-display {
    font-size: 1.5rem;
    width: 35%;
  }
}
.game__new-game-btn {
  background-color: #007fa8;
  color: whitesmoke;
  border-color: #1f1f1f;
}
.game__new-game-btn:hover {
  background-color: whitesmoke;
  color: #007fa8;
  border-color: #007fa8;
}
.game__new-game-btn:focus {
  background-color: whitesmoke;
  border-color: #1f1f1f;
  color: #1f1f1f;
}
@media only screen and (min-width: 992px) {
  .game__new-game-btn {
    font-size: 1.5rem;
  }
}
.game__rules-btn {
  background-color: whitesmoke;
  color: #007fa8;
  border-color: #007fa8;
}
.game__rules-btn:hover {
  background-color: #007fa8;
  color: whitesmoke;
  border-color: #1f1f1f;
}
.game__rules-btn:focus {
  background-color: whitesmoke;
  border-color: #1f1f1f;
  color: #1f1f1f;
}
@media only screen and (min-width: 992px) {
  .game__rules-btn {
    font-size: 1.5rem;
  }
}
.game__utils {
  width: 80%;
}
@media only screen and (min-width: 992px) {
  .game__utils {
    width: 46.5%;
  }
}
.game__modal {
  background-color: #cbf0fd;
}
.game__modal-header {
  border-bottom: #007fa8 1px solid;
}
.game__modal-footer {
  border-top: none;
}

.board {
  max-width: 80%;
  aspect-ratio: 1;
  border: 2px solid black;
  background-color: #161a1d;
}
@media only screen and (min-width: 992px) {
  .board {
    max-width: 44%;
  }
}
.board__cell {
  background-color: #1f1f1f;
  color: whitesmoke;
  cursor: pointer;
}
.board__cell:active {
  transform: scale(0.95);
}
.board__cell--on {
  background: url(assets/light.png) no-repeat center/50% #ffffab;
}
