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

* {
  margin: 0;
}

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

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

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

body {
  font-family: var(--font);
  font-weight: var(--weight-body);
  background: var(--bg);
  color: var(--text);
  font-size: 1.125rem;
  line-height: 1.6;
}

h1 {
  font-weight: var(--weight-display);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
