.site-container {
  height: 100vh;
  background-color: aliceblue;
  display: grid;
  grid-template-areas: "head" "head" "head" "board" "board" "board" "board" "board" "board" "foot" "foot" "foot";
}

* {
  margin: 0px;
}

.header {
  grid-area: head;
  background-color: rgb(120, 120, 141);
  color: white;
  font-size: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
}

.board-container {
  grid-area: board;
  display: grid;
  justify-content: center;
  align-items: center;
  background-color: rgb(164, 166, 166);
}

.footer {
  grid-area: foot;
  background-color: rgb(120, 120, 141);
  color: white;
  font-size: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.board {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  justify-content: center;
}

.board-item {
  border: solid 1px black;
  padding: 20px;
  min-width: 70px;
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  font-size: 20px;
} 
.board-item:hover {
  background-color: rgb(229, 229, 229);
}

.status {
  text-align: center;
  font-size: 20px;
  color: white;
  font-family: "Courier New", Courier, monospace;
}

.positioner {
  display: flex;
  align-items: center;
  justify-content: center;
}

#reset {
  min-width: 200px;
  padding: 10px;
  border-radius: 10px;
}/*# sourceMappingURL=styles.css.map */