@import "https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;600&family=IBM+Plex+Mono:wght@400;500&display=swap";

/* src/styles.css */
:root {
  --navy: #28285f;
  --teal: #55be9b;
  --teal-dark: #188d6d;
  --bg: #f3f5f8;
  --card: #ffffff;
  --line: #d9dee7;
  --ink: #1a1a2e;
  --ink2: #4a5568;
  --ink3: #718096;
  --mono:
    "IBM Plex Mono",
    ui-monospace,
    monospace;
  font-family:
    "Work Sans",
    system-ui,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
}
button,
input {
  font: inherit;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
