body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: lightgrey;
  }
  
  
  .board {
      display:grid;
      grid-template-columns: 100px 100px 100px;
      gap: 5px;
  }
  
  .cell {
      width: 100px;
      height: 100px;
      background-color: white;
      border: 1px solid black;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      cursor: pointer;
  }  
  
  #gameStatus {
      margin-bottom: 20px;
      font-size: 24px;  
      font-weight: bold;  
      color: darkblue;  
      display: block;
  }
  
  .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .button {
        border: none;
        color: white;
        padding: 15px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
    background-color: green;
  }
  #choice {
    text-align: center; 
    margin-bottom: 15px;
}

/* #gameSection {
    display: none; 
    background-color: #f9f9f9; 
    padding: 20px;
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: fit-content; 
    margin-top: 20px;
} */


  