/* src/app/styles/_reset.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
body {
  font-family: system-ui, sans-serif;
  line-height: 1.5;
  background-color: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* src/app/styles/_font.css */
@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/intertight/v9/NGSwv5HMAFg6IuGlBNMjxLsK8ahuQ2e8Smg.woff2) format("woff2");
}

/* src/styles.css */
:root {
  --blue: hsl(237, 97%, 50%);
  --dark-blue: hsl(232, 34%, 23%);
  --dark-blue-o-50: hsla(232, 34%, 23%, 30%);
  --white: hsl(0, 0%, 100%);
  --text-color: var(--dark-blue);
  --font-family:
    "Inter Tight",
    ui-sans-serif,
    system-ui;
  --gutter-xs: 4px;
  --gutter-sm: 8px;
  --gutter-md: 16px;
}
html,
body {
  margin: 0;
  color: var(--text-color);
  font-family: var(--font-family), sans-serif;
  font-weight: 300;
  height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

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