@font-face {
  font-family: "UrbanHeroes";
  src: url("../assets/fonts/Urban Heroes.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Colors */
  --color-green: #a9d800;

  --color-dark: #232323;
  --color-light-text: #595959;

  --color-light-bg: #f1f1f1;

  --color-border-light: #00000040;

  /* Fonts */
  --default-font-family: Inter, Helvetica, sans-serif;
  --pixel-font: 'Pixelify Sans', cursive;

  /* Font Sizes */
  --fs-small: 1rem;
  --fs-normal: 1.2rem;
  --fs-large: 2rem;
  --fs-extra-large: 3rem;

  --header-height: 80px;
}

html,
:host {
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  line-height: 1.5;
  font-family: var(--default-font-family);
  -webkit-tap-highlight-color: transparent;
}

/* Lenis boilerplate */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--color-dark);
}

body {
  background-attachment: fixed;
  background-size: cover;
}

.header-height {
  height: var(--header-height);
}

.header-container {
  height: var(--header-height);
  width: 100%;
  position: fixed;
  top: 0;
  display: flex;
  padding: 0 2rem;
  align-items: center;
  z-index: 100000000;
}

.header-container #logo svg {
  height: calc(var(--header-height) * 0.6);
  transition: 0.25s linear;
  position: fixed;
  top: calc(var(--header-height) * 0.2);
  left: 2rem;
  vertical-align: bottom;
}

.section-content {
  width: 70dvw;
  margin: 0 auto;
}


@media (max-width: 1080px) {
  .section-content {
    width: 80dvw;
  }
}


@media (max-width: 768px) {
  .section-content {
    width: 90dvw;
  }
}