/* Modern reset — behaviour-compatible with the former Meyer reset (2011).
   Preserves the full margin/padding zeroing, font normalization (font: inherit),
   line-height: 1, list-style: none and table collapse the rest of the CSS relies on.
   Modernized: :: pseudo-elements, universal box-sizing, obsolete elements removed
   (applet/acronym/big/tt/strike/center/hgroup — unused), <main> added, dead
   font-size:100% dropped (font: inherit already resets it). */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, main, menu, nav,
output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
