/* A very small reset. Sikons wants sharp edges everywhere, so most of the
   browser's soft defaults are simply removed. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
p,
figure,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

canvas {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}

[hidden] {
  display: none !important;
}
