/*
 * CSS-Datei für das Spiel *Tic-Tac-Toe*
 */
main table {
  margin: auto;
  border-collapse: collapse;
  width: auto;
}
main table tbody td {
  height: 3.5rem;
  width: 3.5rem;
  border-style: solid;
  vertical-align: middle;
  text-align: center;
  font-size: 150%;
}
main table tfoot td {
  padding: 0.5rem;
}
main table tbody tr td:hover,
main table tbody tr th:hover,
main table tbody tr td:focus,
main table tbody tr th:focus {
  background-color: hsla(61, 98%, 12%, 0.2);
}
aside {
  margin-top: 3rem;
  box-sizing: border-box;
  border-top: solid medium hsl(61, 98%, 98%);
}
aside#status {
  border-color: inherit;
}
aside#status .warn {
  color: hsl(343, 86%, 30%);
}
/*# sourceMappingURL=tic_tac_toe.css.map */