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

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgb(42 157 143 / 12%), transparent 28rem),
    linear-gradient(145deg, var(--bg), #08150d 56%, #0a1710);
  color: var(--tx);
  font-family: var(--font-ui);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

button,
select {
  min-height: 44px;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--wh);
  font-family: var(--font-display);
  letter-spacing: -0.025em;
}

:focus-visible {
  border-radius: var(--radius-sm);
  outline: 2px solid var(--brand-green);
  outline-offset: 3px;
}

.mono {
  font-family: var(--font-mono);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

