/* src/styles.css */
:root {
  --ink: #13251f;
  --cream: #f3f3ed;
  --cream-2: #eef0e8;
  --green: #132c25;
  --green-dark: #0e1d18;
  --rust: #ad6847;
  --muted: #66716a;
  --line: #d7d9cf;
  --white: #ffffff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family:
    "Inter",
    "Segoe UI",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button,
input,
select,
textarea {
  font-family: inherit;
}
button,
a {
  cursor: pointer;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

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