
.cell{
  display: table-cell;
  width: 150px;
  height: 150px;  
  box-shadow: 0 0 0 2px inset;

  line-height: 150px;

  font-size: 65px;
  cursor: pointer;
}
.cell:hover{
  background-color: var(--akzent);
  color: var(--dunkelFix);
  transition: 0.2s;
}
#CellContainer{
  display: grid;
  grid-template-columns: repeat(3, auto);
  width: fit-content;
  margin: auto;
  position: relative;
}
#TicTacToeContainer{

  position: relative;
  font-family: "defaultFont", monospace;
  text-align: center;
  transform: translate(-50%,0%);
  left: 50%;
}

#statusText{
  font-family: "defaultFont", monospace;
  font-size: 20px;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  position: relative;
  text-align: center;
}
#TicTacToeResetButton{
  position: relative;
  color:var(--hell);
  background-color: var(--dunkel);
  border: none;
  height: 50px;
  width: 225px;
  padding: 0;
  font-family: "defaultFont", monospace;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}
#TicTacToeResetButton:hover{
  background-color: var(--akzent);
  color: var(--dunkelFix);
  transition: 0.4s;
}