@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Dancing+Script:wght@700&display=swap');



.container {
  text-align: center;
  padding: 20px;
}

.birthday-card {
  background: white;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  max-width: 500px;
  transform: scale(0.95);
  animation: pop-in 0.8s ease-out forwards;
}

@keyframes pop-in {
  to {
    transform: scale(1);
  }
}

.birthday-image {
  max-width: 150px;
  margin-bottom: 20px;
}

h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 4em;
  color: #e75480;
  margin: 0;
}

h2 {
  font-size: 2.5em;
  color: #333;
  margin: 10px 0;
}

p {
  font-size: 1.1em;
  color: #555;
  line-height: 1.6;
}

.from {
  font-style: italic;
  margin-top: 25px;
  color: #777;
}

#balloons-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}