/* app.css — basic mobile media-query frame */

/* Mobile-first styles should go above the media query.
    This block targets devices equal to or smaller than 600px. */
@media only screen and (max-width: 600px) {
  /* Add mobile-specific rules here */
}


/* This block targets devices larger than 600px. */
@media only screen and (min-width: 601px) {
    /* Add tablet and desktop-specific rules here */
}

/* simple reset.css — minimal, modern reset */

/* sensible box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* remove default spacing */
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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

/* base html/body */
html, body {
    height: 100%;
    line-height: 1;
    background: transparent;
    color: inherit;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* lists */
ol, ul {
    list-style: none;
}

/* links */
a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}

/* images and media */
img, picture, svg, video, canvas, audio, iframe {
    display: block;
    max-width: 100%;
    height: auto;
}

/* tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* form elements inherit font and box-sizing */
button, input, select, textarea {
    font: inherit;
    color: inherit;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* preserve accessibility outlines; reduce native appearance where desired */
button, input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* placeholders */
::placeholder {
    opacity: 0.6;
}

/* utility */
[hidden] {
    display: none !important;
}