
.image-puzzle-body {
  width: 90%;
    max-width: 450px;
    margin: 30px auto;
    padding: 15px;
    border-radius: 20px;
    background: linear-gradient(145deg, #111, #000);
    border: 4px solid gold;
    box-shadow: 0 0 30px gold;
    text-align: center;
    color: #fff;
}

.game_board{
   max-width: 100%;
    width: 440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.grid {
  width: 100%;
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.tile {
  background-image: url('https://picsum.photos/300');
  background-size: 300px 300px;
  cursor: pointer;
  aspect-ratio: 1/1;
}

.empty {
  background: transparent;
  cursor: default;
}

.image-puzzle-body button {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.buttons{
  margin:20px auto;
  display: flex;
  gap:10px;
  justify-content:center;
}
button {
  margin: 10px;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}