/* Minimal modern reset */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p,
figure, blockquote, dl, dd, ul, ol {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
}

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

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

a {
    color: inherit;
    text-decoration-skip-ink: auto;
}

table {
    border-collapse: collapse;
}

[hidden] {
    display: none !important;
}
