#container {
  height: 100vh;
  display: grid;
  place-content: center;
  row-gap: 2rem;
}

h2 {
  justify-self: center;
  font-size: 2rem;
  font-weight: bold;
  color: #d4a373;
}

#board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-template-rows: repeat(3, 100px);
  gap: 0.3rem;
}

.square {
  background-color: #e9edc9;
  color: #d4a373;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 5rem;
  cursor: pointer;
}

.square:hover {
  background-color: #ccd5ae;
}

.winner-square {
  background-color: #ccd5ae;
}

.resetButton {
  background-color: #e9edc9;
  border: none;
  color: #d4a373;
  font-weight: bold;
  font-size: 1.2rem;
  width: 100px;
  justify-self: center;
  padding: 0.5rem 1rem;
}

.resetButton:hover {
  background-color: #ccd5ae;
}

* {
  box-sizing: border-box;
  margin: 0;
}

/*# sourceMappingURL=style.css.map */
