/* Import the Playfair Display font at the top */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

/* Basic styles for the landing page */
body {
  font-family: 'Playfair Display', serif; /* Use the Playfair Display font */
  margin: 0;
  padding: 0;
  background-color: #000; /* Black background */
  color: #fff; /* White text */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full viewport height */
}

.container {
  max-width: 800px;
  padding: 20px;
}

h1 {
  font-size: 2rem; /* Adjust size as needed */
  margin: 0;
  padding: 0;
}

p {
  margin: 20px 0; /* Space between paragraphs */
}

.landing-image {
  max-width: 20%; /* Make sure the image fits within the container */
  height: 20%; /* Maintain aspect ratio */
  margin-top: 20px; /* Space between text and image */
}
