/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

body {
  margin: 0;
  background-color: #ffffff;
  font-family: 'Playfair Display', serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

.logo {
  max-width: 100%;
  height: auto;
}

.message {
  font-size: 1.2rem;
  color: #000000;
  line-height: 1.6;
}

.message a {
  color: #000000;
  text-decoration: underline;
}
