/* Set background and center all content */
body {
  background-color: lightblue;
  font-size: 16px;
  text-align: center;
  font-family: Arial, sans-serif;
  padding: 20px;
}

/* Space out the buttons */
.buttons {
  margin: 20px 0;
}

/* Style the buttons nicely */
button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

/* Make the image a fixed size */
.character-image {
  width: 250px;
  margin-top: 20px;
  border: 2px solid #333;
  border-radius: 10px;
}