@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Libre Baskerville', serif;
  background: radial-gradient(circle at center, #fafafa, #e0e0e0);
  color: #222;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo {
  max-width: 650px; /* oder clamp(...) je nach Stil */
  margin-bottom: 1.5rem;
  opacity: 0.95;
  filter: drop-shadow(0 0 10px #dcca72);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.quiet {
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
}

footer {
  font-size: 0.8rem;
  color: #999;
  position: fixed;
  bottom: 1rem;
  width: 100%;
}
