@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, #e0c3fc, #8ec5fc);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222;
}

.container {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 600px;
}

.container h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.container p {
  font-size: 1.2rem;
  line-height: 1.6;
}
