* {
  box-sizing: border-box;
}

.card {
  min-width: 100%;
  border: 2px solid rgb(239, 167, 167);
  background-color: darkgrey;
}

.tic-tac-toe {
  gap: 10px;
  padding: 10px;
  grid-template-columns: repeat(3, 150px);
  grid-template-rows: repeat(3, 150px);
  justify-content: center;
  align-content: center;
}

.card.hide-x {
  background-image: url('../img/X1.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.card.hide-0 {
  /* width: 100px; */
  background-image: url('../img/O.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.game-buttons {
  flex-direction: column;
  gap: 10px;
}

.modal-box h3 {
  padding: 10px;
  color: antiquewhite;
  font-family: Caveat;
  font-size: 1.5em;
  color: wheat;
  letter-spacing: 3px;
}

.re-player-btn {
  width: 200px;
}

.box-container h4 {
  font-family: Caveat;
  font-size: 1.5em;
  color: rgb(4, 4, 4);
}
