.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: Arial, sans-serif;
}

.flower {
  width: 100px;
  height: 100px;
  background-color: pink;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: white;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.flower-animation {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  animation: flower-fall 1s linear infinite;
}

@keyframes flower-fall {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(200px) rotate(720deg);
    opacity: 0;
  }
}

.coupon {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}


a {
  color: blue;
  text-decoration: underline;
}
