body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color:indigo;
    margin: 0;
  }
 
.ss{
  color:"balck";
  } 
  .game-container {
    text-align: center;
    background-color:blueviolet;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    margin-bottom: 20px;
  }
  
  .board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 5px;
    margin-bottom: 20px;
  }
  
  .cell {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    background-color: #f8f8f8;
    border: 2px solid #ccc;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .cell:hover {
    background-color: #e0e0e0;
  }
  
  button {
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border: none;
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
    margin-top: 10px;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  #game-status {
    margin-top: 15px;
    font-size: 1.2em;
    font-weight: bold;
  }
  