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

html {
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body {
  min-width: 18rem;
  min-height: 100vh;
  margin: 0;
  background-color: var(--color-background);
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(25% - 1px),
    rgb(255 255 255 / 0.035) 25%,
    transparent calc(25% + 1px)
  );
  line-height: 1.5;
}

body,
a,
button {
  -webkit-tap-highlight-color: transparent;
}

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

a:focus-visible {
  outline: 1px solid var(--color-focus);
  outline-offset: 0.35rem;
}

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

h1,
h2,
p {
  margin: 0;
}

button,
a {
  font: inherit;
}
