/* -------------------------------------
    Moderner & Simpler CSS Reset
   -------------------------------------

/* ----- Border-Box anstatt Content-Box ----- */
  *, *::before, *::after {
    box-sizing: border-box;
  }

/* ----- Standard-Margin entfernen ----- */
  * {
    margin: 0;
    padding: 0;
  }

/* ----- 100% Höhe für html & body ----- */
  html, body {
    height: 100%;
  }

/* ------ Typografie ----- */
  body {
    line-height: 1.5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  }
  input, button, textarea, select {  
    font: inherit;
    border: none;
    background: none;
    outline: none;
  }
  a { 
    color: inherit;
    text-decoration: none;
  }

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