/* Minimal modern reset. */

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

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

body {
  min-height: 100vh;
}

img, svg, canvas {
  display: block;
  max-width: 100%;
}

button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

::selection {
  background: var(--c-accent);
  color: var(--c-bg);
}
