html,
body,
#app {
  margin: 0;
  height: 100%;
  width: 100%;
}

#app {
  display: grid;
}

/* --------------------------------------------------------------

   reset.css
   * Resets default browser CSS.

-------------------------------------------------------------- */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
code,
del,
dfn,
em,
img,
q,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section,
button {
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  /* Required for propagating border radius from style config to children presets  */
  border-radius: inherit;
  background-color: transparent;
}

input,
textarea,
img,
span,
p,
h1,
h2,
h3,
h4,
h5,
h6,
button {
  border: 0;
  color: initial;
  background-color: transparent;
  white-space: break-spaces;
}

button {
  cursor: pointer;
}

/* Line-height should always be unitless! */
body {
  line-height: 1.5;
  background: white;
}

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
}

blockquote,
q {
  quotes: """";
}

img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: inherit;
}

/* Remove annoying border on linked images. */
a img {
  border: none;
}

/* Remember to define your own focus styles! */
:focus {
  outline: 0;
}