@import "tailwindcss";
@custom-variant dark (&:where(.dark, .dark *));
:root {
  color-scheme: dark;
  --bg: #09090b;
  --fg: #f4f4f5;
}
body {
  margin: 0;
  background: radial-gradient(circle at top, #18181b, #09090b 55%);
  color: var(--fg);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
.light body {
  background: #fafafa;
  color: #09090b;
}
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
.focus-ring:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}
