body {
  background-color: #87CEEB; /* Sky blue background */
  text-align: center;
}

#game-area {
  position: relative;
  width: 800px;
  height: 600px;
  border: 2px solid black;
  background-color: #ADD8E6; /* Light blue game area */
  margin: 20px auto; /* Center the game area */
  cursor: crosshair; /* Change cursor to crosshair */
}

#dog {
  position: absolute;
  width: 100px;  /* Adjust size as needed */
  height: 100px; /* Adjust size as needed */
  border-radius: 10%; /* Slightly rounded corners if you want */
  background-size: cover; /* Important for images */
  background-color: transparent; /* Remove any background color */
}

#score {
  font-size: 20px;
  margin-top: 10px;
}

#message {
  font-size: 20px;
  margin-top: 10px;
  color: green;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}