body {
  background-color: blanchedalmond;
  font-family: Arial;
  text-align: center;
  position: relative; /* Gives the logo a starting point to anchor to */
  margin: 0;
  padding: 0;
}

.container {
  width: 80%;
  margin: 40px auto; /* Increased top margin a bit to give the layout breathing room */
  padding: 20px;
  background-color: white;
  border-radius: 10px;
}

img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* This targets your puppy image inside the container specifically */
.container img {
  width: 250px;
}

/* 👑 Official Game Logo Corner Styling */
.logo {
  position: absolute;  /* Breaks it out of the layout so it floats */
  top: 15px;           /* 15 pixels from the top edge */
  left: 15px;          /* 15 pixels from the left edge */
  width: 80px;         /* Makes it small and out of the way */
  height: auto;
  opacity: 0.7;        /* Blends it into the background like a real watermark */
  transition: all 0.3s ease;
}

/* Makes the logo light up beautifully when hovered */
.logo:hover {
  opacity: 1.0;
  transform: scale(1.1);
}

button {
  padding: 10px 20px;
  font-size: 16px;
  margin: 10px;
  border-radius: 5px;
  border: none;
  background-color: #d2b48c;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #cd853f;
}