/* reset.css */

/* Grundlegende Browser-Resets */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Einheitliche Grundschrift */
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Standard-Body-Reset */
body {
  margin: 0;
  font-family: sans-serif;
  background: transparent; /* Wird später durch Layout/CSS überschrieben */
  color: inherit;      /* Wird später durch Typography überschrieben */
}

/* Entfernt Standardstile von Listen */
ul,
ol {
  list-style: none;
}

/* Entfernt Standardstile von Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Bilder und Medien */
img,
picture,
video,
canvas,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* Formularelemente vereinheitlichen */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
}

/* Buttons klickbar machen */
button {
  cursor: pointer;
}

/* Tabellen vereinheitlichen */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
