@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
  --color-bg-base: #0a0a0a;
  --color-accent: #39ff14;
  --color-text-primary: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  overflow-y: auto;
  overscroll-behavior-x: none;
  scrollbar-gutter: stable;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  margin: 0;
  overflow: visible;
  background-color: var(--color-bg-base);
  color: var(--color-text-primary);
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
}

html.preloader-active {
  overflow: hidden;
}

html.nav-open {
  overflow: hidden;
}

html.nav-open body {
  overflow: hidden;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text-primary);
  line-height: 1.25;
  font-weight: 700;
}

.layout-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.accent {
  color: var(--color-accent);
}
