:root {
  --gap-1: 0.5rem;
  --gap-2: 1rem;
  --gap-3: 2rem;
  --hp: 10vw;
  --t-1: 0.9rem;
  --t-2:1.5rem;
  --t-3: 2rem;
}


@font-face {
  font-family: 'NA';
  font-style: normal;
  font-weight: normal;
  src: url('/fonts/na-roman.woff') format('woff');
}

@font-face {
  font-family: 'NA';
  font-style: normal;
  font-weight: 200;
  src: url('/fonts/na-light.woff') format('woff');
}

@font-face {
  font-family: 'NA';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/na-medium.woff') format('woff');
}

@font-face {
  font-family: 'NA Condensed';
  font-style: normal;
  font-weight: bold;
  src: url('/fonts/na-condensed-bold.woff') format('woff');
}

@font-face {
  font-family: 'NA';
  font-style: italic;
  font-weight: normal;
  src: url('/fonts/na-roman-italic.woff') format('woff');
}

i {
  font-family: inherit;
}

button {
  color: black;
  font-family: "NA";
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html ::selection {
  background-color: #eaeaea;
  color: #000000;
}

::-webkit-scrollbar {
  width: 8px;
   height: 8px;
}

::-webkit-scrollbar-thumb {
    background: rgb(164 164 164);
}

::-webkit-scrollbar-track {
    background: rgb(253, 253, 253);
}

a {
  cursor: pointer;
}

container {
  display: block;
  width: 100%;
}

@media screen and (max-width: 700px) {
  [media-only="desktop"] {
      display:none;
  }
}


.node {
  display: flex;
  align-items: center;
}

body {
  overflow: visible;
}

html, body {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: initial;
  scrollbar-gutter: stable both-edges;
  font-family: "NA";
  font-weight: normal;
  font-size: 0.9rem;
  -webkit-text-size-adjust: none;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: white;
}

main {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

main::-webkit-scrollbar {
  display: none;
}
 

main {
  overflow-y: hidden;
  overflow-x: hidden;
  width: 100%;
}

button {
    font-size: .9rem;
    padding: .3rem 1rem;
    background-color: #fff;
    border: 1px solid;
    cursor: pointer;
    min-height: 2rem;
    box-sizing: border-box;
}
[data-no-select] {
  -user-select: none;-webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; 
}

[data-hide] {
  display: hidden;
}
