:root {
  --light: #ffffff;
  --dark-text: #1f1e17;
  --gray: #878680;
  --gray-dark: #8a8a8a;
  --primary: #79a382;
  --accent: #106ea0;
}

*,
::after,
::before {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  font: 400 16px/1.5 "Ubuntu Mono", monospace;
  color: var(--dark-text, #1f1e17);
}

body {
  position: relative;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background: #fff7df;
  color: #1f1e17;
}

body.menu-active {
  overflow: hidden;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
article > * + * {
  margin-top: 1em;
}
button,
input,
select,
textarea {
  font: inherit;
}

input,
select {
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #606060;
  background-color: transparent;
  font: 400 1em/1 "Ubuntu Mono", monospace;
}

input::-moz-placeholder,
select::-moz-placeholder {
  color: #8a8a8a;
}

input::placeholder,
select::placeholder {
  color: #8a8a8a;
}

input:focus,
select:focus {
  outline: none;
}

html::-webkit-scrollbar {
  width: 0px;
}
html::-webkit-scrollbar-track {
  background: var(--accent, #51b0e2);
}
html::-webkit-scrollbar-thumb {
  background: linear-gradient(
    112.92deg,
    rgba(255, 255, 255, 0.36) 10.45%,
    rgba(255, 255, 255, 0.09) 88.73%
  );
}

h1 {
  font: 900 128px/100px "Proxima Nova", sans-serif;
}

h2 {
  font: 500 24px/1 "Proxima Nova", sans-serif;
}

h3 {
  font: 500 22px/1 "Proxima Nova", sans-serif;
}

h4 {
  font: 700 20px/1 "Proxima Nova", sans-serif;
}

h5 {
  font: 700 18px/1 "Proxima Nova", sans-serif;
}

h6 {
  font: 700 16px/1 "Proxima Nova", sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

/* FOR LENIS */
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: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}
