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

/* Seitenweite Grundeinstellungen */
html, body {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: white;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Jede Seite nimmt den ganzen Viewport ein */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  text-align: center;
}

/* Logo responsive zentriert */
.logo {
  max-width: 250px;
  width: 80%;
  height: auto;
}

/* Impressum Box */
.impressum-box {
  max-width: 600px;
  width: 100%;
  font-size: 0.95rem;
  color: #222;
  line-height: 1.4;
}

/* Impressum-Zeilenabstand */
.impressum-box p {
  margin: 0.4rem 0;
}

/* E-Mail-Link */
.impressum-box a {
  color: #222;
  text-decoration: none;
}

.impressum-box a:hover {
  text-decoration: underline;
}

/* Darstellung auf kleinen Bildschirmen */
@media (max-width: 600px) {
  .logo {
    max-width: 150px;
    width: 90%;
  }

  .impressum-box {
    font-size: 0.9rem;
  }

  .impressum-box p {
    margin: 0.3rem 0;
  }
}