/*00_reset.css*/

/* ===================================== /
/ RESET.CSS /
/ Grundzustand für alle Browser /
/ ===================================== */

{
margin: 0;
padding: 0;
}

/* Dokumentbasis */
html,
body {
height: 100%;
}

/* Medien korrekt skalieren */
img,
picture,
video,
canvas,
svg {
display: block;
max-width: 100%;
}

/* Formularelemente erben Schrift */
input,
button,
textarea,
select {
font: inherit;
}

/* Listen neutralisieren */
ul,
ol {
list-style: none;
}

/* Links ohne Browser-Standard */
a {
color: inherit;
}

/* Tabellen sauber darstellen */
table {
border-collapse: collapse;
border-spacing: 0;
}