/* CSS Reset - Gebod #7 */
/* Bron: Gebaseerd op moderne CSS reset principes */

html {
    line-height: 1.15;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button {
    background-color: transparent;
    border: none;
    font-family: inherit;
    font-size: 100%;
    cursor: pointer;
}

input, textarea, select {
    font-family: inherit;
    font-size: 100%;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}