html {
  background: var(--bg);
  color: var(--text);
  font-size: var(--fs-base);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: var(--lh-body);
}

a {
  color: var(--accent-hover);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

button,
input {
  color: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  background: var(--accent);
  color: var(--bg);
  padding: 0.5rem 0.75rem;
}

.skip-link:focus {
  top: 1rem;
}
