/* src/reset.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul[role=list],
ol[role=list] {
  list-style: none;
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
img,
picture {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* src/variables.css */
:root {
  --primary-color: #1B75DD;
  --secondary-color: #1558A8;
  --background-color: #F5F5F5;
  --text-color: #363636;
  --text-color-inverted: #FFF;
  --warning-color: #D08F22;
  --alert-color: #C34746;
  --nav-height: 56px;
}

/* src/app.css */
:root {
  font-family:
    "Open Sans",
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color-scheme: light dark;
  color: #363636;
  background-color: var(--background-color);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
a {
  font-weight: 500;
  color: #1B75DD;
  text-decoration: inherit;
}
a.inverted {
  color: var(--text-color-inverted);
}
body {
  margin: 0;
}
h1 {
  font-size: 2.6em;
  line-height: 1.1;
  font-weight: 500;
}
.centered {
  max-width: 960px;
  margin: 0 auto;
}
hr {
  border: none;
  border-bottom: 1px solid #d0d0d0;
}
@media (max-width: 1080px) {
  .centered {
    max-width: 90%;
  }
}
@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
}

/* src/styles.css */

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