:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.08), transparent 35%), #050505;
  color: #f8fafc;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  outline: none;
}

::selection {
  background: rgba(255, 255, 255, 0.18);
  color: #f8fafc;
}
