/* ==========================================================
   BASE: Reset / Grundnormalisierung
   Gilt für alle Seiten
   ========================================================== */

/* Kein horizontales Overflow */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* Einheitliches Box-Modell */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Grundzustand für Dokument */
html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: var(--page-background);
}

/* Medien sauber skalieren */
img,
video,
iframe {
  max-width: 100%;
}

/* Bilder und Videos ohne unnötigen Inline-Abstand */
img,
video {
  display: block;
}

/* Formularelemente erben die Schrift */
button,
input,
textarea,
select {
  font: inherit;
}