 .container {
    text-align: center;
    margin-top: 50px;
    background-image: url('2.jpg');
    background-size: cover;
    background-position: center;
    padding: 20px;
  }
  ​
  .board {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 5px;
    margin-bottom: 20px;
  }
  ​
  .cell {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.5); /* Added transparent background color */
    border: 2px solid #000;
    font-size: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }
  ​
  .cell:hover {
    background-color: rgba(255, 255, 255, 0.7); /* Added transparent hover background color */
  }
  ​
  .message {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  ​
  button {
    font-size: 1em;
    padding: 10px 20px;
  
  
  Console
  Assets
  Comments
  
  1.0×
  Delete
  Add to Collection
  Fork
  Export
  Share
  g&_nc_cat=111&ccb=1-7&_nc_sid=efb6e6&_nc_ohc=Z1XLzbtN_d4AX9RokuF&_nc_ht=scontent.fktm17-1.fna&oh=00_AfAjVVJgGA-F-5j9jwQUWXBynf-a0Xi4PG-mFP6t2xtpUQ&oe=65EA44B3');
    background-size: cover;
    background-position: center;
    padding: 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;
    background-color: rgba(255, 255, 255, 0.5); /* Added transparent background color */
    border: 2px solid #000;
    font-size: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .cell:hover {
    background-color: rgba(255, 255, 255, 0.7); /* Added transparent hover background color */
  }
  
  .message {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  
  button {
    font-size: 1em;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  .popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #28a745; /* Green color */
    color: blue;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 999;
  }
  