/* ===================================================== */
/* ==================== TICTACTOE ====================== */
/* ===================================================== */

div.tictactoe {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-items: center;
  align-items: center;
  justify-content:space-around;

  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: rgba(38, 0, 109, 0.466);
}
div.tictactoe a.case-tictactoe {
  -webkit-user-drag: none;
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 25%;
  min-height: 25%;
  max-width: 33%;
  max-height: 33%;

  margin: 1px; /* idk */

  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);

  border-radius: 5%;

  text-decoration: none;
  text-align: center;
  font-size: 300%;
  align-content: center;
}