/* CSS Reset with Animation Reset */

/* Box sizing reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin, padding, border */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
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, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    background: none;
    color: inherit;
}

/* Remove list styles */
ol, ul {
    list-style: none;
}

/* Remove quotes from blockquotes and q */
blockquote, q {
    quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
    content: '';
    content: none;
}

/* Remove table spacing */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remove outline */
:focus {
    outline: none;
}

/* Remove text decoration */
a {
    text-decoration: none;
    color: inherit;
}

/* Respect user motion preferences instead of disabling globally */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Allow text selection by default (do NOT disable globally).
   If you need to prevent selection on specific widgets, scope it locally. */

/* Set base line-height and font-family */
body {
    line-height: 1;
    font-family: inherit;
    background: none;
}
