body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .game-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
  }
  
  .puzzle-container {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-gap: 4px;
    margin: 20px 0;
  }
  
  .puzzle-piece {
    width: 100px;
    height: 100px;
    cursor: pointer;
    border: 1px solid #ccc;
    background-size: 300px 300px; /* Odpowiada rozmiarowi całego obrazka */
  }
  
  button {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  #status {
    font-weight: bold;
    margin-top: 10px;
  }
  