body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(120deg, #f794c0, #fce4ec); /* Glamour */
  overflow-x: hidden;
  position: relative;
}

.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  gap: 40px;
  flex-wrap: wrap;
}

.image-container img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
  border: 6px solid white;
}

.message-container {
  max-width: 600px;
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #444;
}

.message-container h1 {
  font-size: 2em;
  color: #d81b60;
  margin-bottom: 20px;
}

.message-container p {
  font-size: 1em;
  line-height: 1.6;
}
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  top: -10px;
  animation: fall linear infinite;
}

@keyframes fall {
  to {
    transform: translateY(100vh) rotate(360deg);
  }
}
