@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffd6e8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}

.container {
  max-width: 400px;
  padding: 20px;
}

h1, h2 {
  color: #ff4d8d;
}

button {
  background: #ff8fab;
  border: none;
  padding: 12px 25px;
  margin: 10px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  color: white;
}

button:hover {
  background: #ff4d8d;
  transform: scale(1.1);
}

img {
  max-width: 100%;
  border-radius: 15px;
}


.heart {
  font-size: 80px;
  animation: pump 1s infinite;
  cursor: pointer;
}

@keyframes pump {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}


#noBtn {
  position: absolute;
}


.sticker {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 150px;
  animation: wiggle 1s infinite;
  cursor: pointer;
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  50% { transform: rotate(-8deg); }
  75% { transform: rotate(4deg); }
  100% { transform: rotate(0deg); }
}
