/* src/styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #171A1E;
  background-color: #F1F1EC;
  transition: background-color 0.5s ease, color 0.5s ease;
}
body.dark {
  background-color: #12151A;
  color: #ECEDEE;
}

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