/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
#play-area {
  position: relative;
  width: 100%;
  height: 400px;
  border: 2px dashed #CBAACB;
  background: #fff;
  margin-top: 15px;
}

.item {
  position: absolute;
  font-size: 24px;
  cursor: pointer;
  user-select: none;
}

#counter {
  margin-top: 10px;
  font-size: 1.1em;
}
body {
  background: hotpink 
}
.stickers {
  display:flex;
  gap:12px;
  margin-bottom:12px;
  flex-wrap:wrap;
}

.sticker {
  background:#fff7cc;
  padding:10px 14px;
  border-radius:12px;
  font-size:14px;
  color:#6a5b3d;
  cursor:text;
  box-shadow:2px 4px 8px rgba(0,0,0,0.08);
  min-width:80px;
}

.sticker:focus {
  outline:none;
}
#emoji-panel {
  background:#eef4e6;
  padding:8px;
  border-radius:10px;
}

.emoji {
  cursor:pointer;
  font-size:18px;
  margin:4px;
  display:inline-block;
}
