
/* Base Reset */
html, body {
    font-size: 16px; 
    width: 100%; 
    height: 100%;
    scroll-behavior: smooth;
}

/* Remove default margin */
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
    margin: 0;
}

/* Box sizing */
*, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}

/* Media defaults */
img, picture, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Form element inheritance */
input, button, textarea, select {
    font: inherit;
}