/* src/styles.scss */
* {
  font-family: "Nunito Sans", serif;
}
*::-webkit-scrollbar {
  width: 4px;
  height: 50%;
}
*::-webkit-scrollbar-thumb {
  background: rgba(51, 51, 51, 0.5);
  border-radius: 10px;
}
html {
  margin: 0;
}
body {
  margin: 0;
  --global-border: 20px;
}
h1 {
  font-family: Urbanist, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
a {
  text-decoration: none;
}
body {
  --bottom-size: 86px;
  --view-size: calc(100dvh - var(--bottom-size));
  --mobile-view-width: 600px;
}
p {
  font-size: 14px;
}

/* src/assets/fonts/fonts.scss */
@font-face {
  font-family: "Nunito Sans";
  src: url(/assets/fonts/NunitoSans/NunitoSansVariable.ttf) format("truetype");
}
@font-face {
  font-family: Urbanist;
  font-weight: 700;
  src: url(/assets/fonts/Urbanist/Urbanist-Bold.ttf);
}
@font-face {
  font-family: Urbanist;
  font-weight: 600;
  src: url(/assets/fonts/Urbanist/Urbanist-SemiBold.ttf);
}

/* angular:styles/global:styles */
