/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f0e6; /* soft beige */
  font-family: 'Playfair Display', serif;
  color: #4b3a2f; /* dark brown */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 20px;
}

.logo h1 {
  font-size: 3rem;
  letter-spacing: 2px;
}

.emblem {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.25rem;
  margin-top: 1rem;
  color: #6c5c4b;
}

.email {
  font-size: 1rem;
  margin-top: 2rem;
  color: #a08d79;
}
