*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-serif);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-bg);
}

#app {
  min-height: 100dvh;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

input,
select,
textarea {
  font-family: var(--font-serif);
}
