/* Reset & Basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background-color: #fafafa;
  color: #333;
}

/* Zentrierter Flex-Container */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  height: 100%;
}

/* Logo */
.logo {
  max-width: 200px;
  margin-bottom: 1.5rem;
}

/* Überschrift */
h1 {
  font-size: 2rem;
  color: #3fc2c3; /* Türkis-Akzent */
  margin-bottom: 1rem;
}

/* Einleitungstext */
.lead {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Hervorhebung */
.notice {
  margin-top: 1.5rem;
  font-style: italic;
  color: #555;
}

/* Kontakt & Social */
.contact, .social {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
a {
  color: #3fc2c3;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
