body {
  background-color: #dda96d; /* Set the background color */
  display: flex;
  justify-content: center; /* Horizontally center the content */
  align-items: center; /* Vertically center the content */
  min-height: 100vh; /* Ensure the body takes up at least the full viewport height */
  margin: 0; /* Remove default body margins */
}

img {
  max-width: 100%; /* Prevent the image from overflowing its container */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Prevents a small space from appearing below the image */
}