/* base.css */

:root {
  --base: #1e1e2e;
  --mantle: #181825;
  --surface: #313244;
  --text: #cdd6f4;
  --sub: #a6adc8;
  --mauve: #cba6f7;
  --blue: #89b4fa;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--base);
  color: var(--text);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  line-height: 1.5;
}

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