/**
  Stylesheet only for Ultimate Tic-Tac-Toe.
*/
:root {
  --no-player: darkgray;
  --player1: rgb(112, 112, 255);
  --player2: rgb(255, 210, 112);
  --playerdraw: rgb(44, 44, 44);
}

.uttt-grid-container {
  justify-self: center;
  padding: 5px;
}

.uttt-grid {
  fill: white;
}

.uttt-grid__big-cell {
  fill: darkgray;
}