
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');

body {
  font-family: 'DM Serif Display', serif;
  margin: 0;
  padding: 0;
  background: #fff9f5;
  color: #2b1a22;
}

.bubble-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem;
}

.bubble-nav a {
  background: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.bubble-nav a:hover {
  transform: scale(1.1);
  background: #ffe8f0;
}

/* Sticker style */
.sticker {
  display: block;
  max-width: 300px;
  border-radius: 25% 60% 30% 50% / 30% 50% 25% 60%;
  border: 3px solid #000;
  padding: 10px;
  background: #fff;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  animation: float 4s ease-in-out infinite;
  margin: 2rem auto;
}

.sticker:hover {
  transform: rotate(-2deg) scale(1.05);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
