body {
  font-family: Arial, sans-serif;
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

#game-container {
  text-align: center;
}

#difficulty-selector {
  margin-bottom: 20px;
}

#wanted-poster {
  margin-bottom: 20px;
}

#wanted-image {
  width: 150px;
  height: auto;
}

#grid {
  position: relative;
  width: 90vw;
  max-width: 600px;
  height: 90vw;
  max-height: 600px;
  background-color: black;
  overflow: hidden;
  border: 2px solid white;
}

.grid-item {
  width: 50px;
  height: 50px;
  position: absolute;
  cursor: pointer;
}

.grid-item img {
  width: 100%;
  height: auto;
}

#game-info {
  margin-top: 20px;
  font-size: 18px;
}
