body {
  font-family: 'Comic Sans MS', cursive;
  background: #fdf6ff;
  margin: 0;
  text-align: center;
}

header {
  background: #ffccff;
  padding: 20px;
}

.logo {
  width: 120px;
}

h1 {
  color: #ff4da6;
}

.hero {
  padding: 40px;
}

button {
  background: #00ccff;
  border: none;
  padding: 15px 25px;
  font-size: 18px;
  border-radius: 20px;
  cursor: pointer;
}

button:hover {
  background: #0099cc;
}

.stickers {
  padding: 20px;
}

#gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.sticker {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
