/* src/styles.scss */
@font-face {
  font-family: "TTNorms";
  src: url("./media/TTNorms-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "TTNorms";
  src: url("./media/TTNorms-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TTNorms";
  src: url("./media/TTNorms-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "TTNorms";
  src: url("./media/TTNorms-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
html {
  background-color: #ffffff;
  font-size: 75.5%;
  margin: 0;
  padding: 0;
  height: 100%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 37.5em) {
  html {
    font-size: 45%;
  }
}
@media only screen and (max-width: 112.5em) {
  html {
    font-size: 75%;
  }
}
body {
  margin: 0;
  padding: 0;
  font-family:
    "TTNorms",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont;
  box-sizing: border-box;
  background-size: cover;
  letter-spacing: 0.045rem;
  display: flex;
  flex-direction: column;
}
h1 {
  font-size: 32px;
  color: #4785FF;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
}
h2 {
  font-feature-settings: "clig" off, "liga" off;
  font-size: 24px;
  color: #4785FF;
  font-weight: bold;
  line-height: 32px;
  margin: 0;
}
h3 {
  font-feature-settings: "clig" off, "liga" off;
  font-size: 20px;
  color: #4785FF;
  font-weight: 500;
  line-height: 32px;
  margin: 0;
}
h6 {
  margin: 0;
  padding: 0;
  font-size: 15px;
}
p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.header-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background-color: #002df9;
}
.custom-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  animation: spin-dash 1s linear infinite;
}
@keyframes spin-dash {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(90deg);
  }
  70% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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