.cell{
    width: 120px;
    height: 120px;
    border: 2px solid;
    box-shadow: 0 0 0 2px;
    line-height: 120px;
    font-size: 70px;
    cursor: pointer;
  }
  .cell:hover{
    background-color: #9a9a9a;
  }
  #CellContainer{
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 360px;
    margin: auto;
  
    position: absolute;
    bottom: 20px;
    left: 15px;
  
  }
  
  
  #TicTacToe{
    height: 530px;
    width: 400px;
  
  }
  
  #TicTacToeContainer{
    height: 510px;
    width: 400px;
  
    font-family: sans-serif;
    text-align: center;
  }
  
  #statusText{
  
    font-family: sans-serif;
    font-size: x-large;
    height: 50px;
    width: 251px;
  
    position: absolute;
    text-align: center;
    right: 15px;
    bottom: 409px;
  }
  
  #TicTacToeResetButton{
    color:black;
    background-color: #c3c3c3;
    border-radius: 0;
    border-style: outset;
    border-width: 2px;
    border-color: #9a9a9a;
  
    bottom: 427px;
    left: 15px;
  
    height: 50px;
    width: 120px;
  
    position: absolute;
  
    font-family: sans-serif;
    line-height: 15px;
  }
  #TicTacToeResetButton:hover{
    background-color: #9a9a9a;
    border-color: #9a9a9a;
    border-style: inset;
    border-width: 2px;
    color: white;
  }