/* src/styles.scss */
:root {
  --color-primary: #1e1e1e;
  --color-secondary: #fff;
  --color-text: #fff;
  --color-surface: #f6f6f6;
  --color-border: #d9d9d9;
  --color-muted: #6f6f6f;
  --color-shadow: rgba(0, 0, 0, 0.12);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
}
body {
  min-width: 320px;
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  background: var(--color-surface);
  color: #111;
}
button,
a,
input {
  font: inherit;
}

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