/*
|--------------------------------------------------------------------------
| RESET.CSS
|--------------------------------------------------------------------------
|
| Dieses Stylesheet setzt die Browser-Standardeinstellungen zurück,
| damit alle Browser möglichst identisch darstellen.
|
| Hier gehören ausschliesslich globale Resets hinein.
| Keine Farben, keine Layouts und keine Komponenten.
|
*/

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    -webkit-appearance: none;
    appearance: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}