/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --ink: #17191c;
  --muted: #687078;
  --line: #dfe3e6;
  --soft-line: #eceff1;
  --surface: #fff;
  --canvas: #f7f8f8;
  --blue: #1769e0;
  --green: #1f8a53;
  --amber: #b56a0a;
  --red: #c53b3b;
  --violet: #7454c7;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--canvas);
  min-height: 100%;
  color: var(--ink);
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow: hidden;
}

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: #dceaff;
}

/*# sourceMappingURL=src_app_globals_162hn9o.css.map*/