@import "https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Syne:wght@500;700;800&display=swap";

/* src/styles.scss */
:root {
  --font-body: "Manrope", sans-serif;
  --font-display: "Syne", sans-serif;
  --color-bg: #090909;
  --color-surface: rgba(255, 255, 255, 0.04);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-text: #f7f2ea;
  --color-muted: #c5b9ad;
  --color-accent: #f59d42;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(
      circle at top left,
      rgba(181, 84, 36, 0.22),
      transparent 25%),
    radial-gradient(
      circle at bottom right,
      rgba(83, 126, 105, 0.18),
      transparent 30%),
    linear-gradient(
      180deg,
      #090909 0%,
      #15120f 45%,
      #090909 100%);
}
button,
input,
textarea,
select {
  font: inherit;
}
a {
  color: inherit;
}

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