body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #e6b8c7, #fbe3e8);
  color: #333;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  max-width: 600px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

h1 {
  font-size: 64px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: #5a3e50;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
