*,
*::before,
*::after { box-sizing: border-box; }

html { height: 100%; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: 1.5;
  color: var(--color-text);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(26, 92, 94, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at -5% 100%, rgba(196, 92, 38, 0.06), transparent 50%),
    var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

#app { min-height: 100vh; }

h1, h2, h3, h4 { margin: 0; font-weight: var(--weight-semibold); line-height: 1.25; }
p { margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }
:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

.mono { font-family: var(--font-mono); }
.muted { color: var(--color-text-muted); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
