/* src/styles.scss */
:root {
  --bg: #f5efe3;
  --paper: rgba(255, 255, 255, 0.84);
  --paper-strong: #fffdf8;
  --ink: #1f2520;
  --muted: #677168;
  --line: rgba(31, 37, 32, 0.12);
  --brand: #c96442;
  --brand-2: #295f4e;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 42px rgba(33, 39, 34, 0.12);
  --display-font:
    "Iowan Old Style",
    "Palatino Linotype",
    "Book Antiqua",
    Georgia,
    serif;
  --body-font:
    "Inter",
    "Segoe UI",
    sans-serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--body-font);
  letter-spacing: 0.16px;
  color: var(--ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(201, 100, 66, 0.15),
      transparent 28%),
    radial-gradient(
      circle at top right,
      rgba(41, 95, 78, 0.16),
      transparent 22%),
    linear-gradient(
      180deg,
      #faf6ee 0%,
      var(--bg) 100%);
}
h1,
h2,
h3 {
  font-family: var(--display-font);
  font-weight: 300;
  letter-spacing: -0.03em;
}
body {
  min-height: 100vh;
}
button,
input,
textarea,
select {
  font: inherit;
}

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