/* style.css */
body {
  font-family: sans-serif;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1634746712794-203f2ba2c057?auto=format&fit=crop&w=1400&q=80') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}
body::after {
  content: "";
  background: url('mascotside.png') no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 300px;
  pointer-events: none;
  z-index: 1;
}
.items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.draggable {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  cursor: grab;
  user-select: none;
  font-size: 36px;
  z-index: 2;
}
.emoji {
  pointer-events: none;
}
.label {
  font-size: 14px;
  margin-top: 5px;
}
.plate {
  background: url('https://static.vecteezy.com/system/resources/previews/010/870/394/original/green-banana-leaf-isolated-on-white-background-png.png') no-repeat center center;
  background-size: contain;
  width: 1200px;
  height: 550px;
  position: relative;
  margin: auto;
  z-index: 2;
}
.placed {
  position: absolute;
  font-size: 36px;
  z-index: 2;
}
.placed .label {
  display: none;
}
#reset-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background: crimson;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
}
#message-box {
  font-size: 18px;
  font-weight: bold;
  color: darkgreen;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.7);
  width: fit-content;
  padding: 8px 16px;
  margin: 0 auto 12px;
  border-radius: 10px;
  border: 2px solid #228B22;
  z-index: 2;
}
