body {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#bananaHand {
  width: 600px;
  height: 880px;
  cursor: pointer;
}

/* Responsive framed banana image */
#bananaHand {
  display: block;
  margin: 20px auto;
  width: 100%;
  max-width: 600px;   /* caps size on big screens */
  height: auto;       /* keeps aspect ratio */
  border-radius: 12px;
  background: #fff;   /* subtle mat */
  padding: 8px;       /* mat spacing */
  box-shadow: none !important;
}

/* Slightly tighter mat on very small screens */
@media (max-width: 420px) {
  #bananaHand {
    padding: 6px;
    border-radius: 10px;
    margin: 14px auto;
  }
}