/*******************************
 Typography
 ******************************/

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/JetBrainsMono-Regular.woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "PP Formula";
  src: url("/fonts/PPFormula-Light.otf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "PP Formula";
  src: url("/fonts/PPFormula-Medium.otf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "PP Formula";
  src: url("/fonts/PPFormula-Extrabold.otf");
  font-weight: 600;
  font-style: normal;
}

.TitleHero {
  font-size: 108px;
  font-family: "PP Formula", sans-serif;
  font-weight: 500;
  line-height: 100%;
}
.TitleXLarge {
  font-size: 42px;
  font-family: "PP Formula", sans-serif;
  font-weight: 500;
  line-height: 120%;
}
.TitleLarge {
  font-size: 32px;
  font-family: "PP Formula", sans-serif;
  font-weight: 500;
  line-height: 145%;
}
.TitleMedium {
  font-size: 24px;
  font-family: "PP Formula", sans-serif;
  font-weight: 500;
  line-height: 145%;
}
.TitleSmall {
  font-size: 22px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 120%;
}
.TitleXSmall {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 120%;
}
.Body1 {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 140%;
}
.Body2 {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 120%;
  margin-block: 0.5rem;
}
.Mono1 {
  font-size: 16px;
  font-family: "Inter", "JetBrains Mono", sans-serif;
  font-weight: 400;
  line-height: 100%;
}
.Mono2 {
  font-size: 14px;
  font-family: "Inter", "JetBrains Mono", sans-serif;
  font-weight: 400;
  line-height: 100%;
}
.Mono3 {
  font-size: 13px;
  font-family: "Inter", "JetBrains Mono", sans-serif;
  font-weight: 400;
  line-height: 100%;
}

.Secondary {
  color: rgb(var(--light-text-secondary));
}
.Tertiary {
  color: rgb(var(--light-text-tertiary));
}
.TitleHero.NumericText,
.TitleXLarge.NumericText,
.TitleLarge.NumericText,
.TitleMedium.NumericText {
  font-family: "Inter", sans-serif;
}

.TextStart {
    text-align: start;
}
.TextEnd {
    text-align: end;
}
.TextCenter {
    text-align: center;
}
.TextJustify {
    text-align: justify;
}

.ItemStart{
    justify-content: start;
}
.ItemEnd{
    justify-content: end;
}
.ItemCenter{
    justify-content: center;
}