/* 1. Alles auf Null setzen */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. Grundlegende Schrift-Erben */
body {
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* 3. Bilder, Videos und Co. */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 4. Formularelemente vereinheitlichen */
input,
button,
textarea,
select {
  font: inherit;
}

/* 5. Remove default list styles */
ul,
ol {
  list-style: none;
}

/* 6. Links als Inline-Elemente ohne Unterstreichung */
a {
  text-decoration: none;
  color: inherit;
}