@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*, ::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

:root {
  font-size: 14px;
  --side-padding: 30px;
  --rgb-body: 34 34 34;
  --rgb-primary: 255 255 255;
  --rgb-logo: var(--rgb-primary);
  --transition-link: .2s;
  --app-height: 100%;
  --footer-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  padding-inline: 2rem;
  font-family: "Manrope", "Poppins", sans-serif;
  background: rgb(var(--rgb-body));
  color: rgb(var(--rgb-primary));
  transition: all 0.2s;
  scroll-behavior: smooth;
}
body header {
  padding-block: 2rem;
}
body header svg {
  width: 12em;
  height: 1.6em;
  fill: rgb(var(--rgb-primary));
  transition: all 0.25s linear;
}
body h1 {
  text-transform: uppercase;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

div.landing-page.container {
  min-height: var(--app-height);
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}
div.landing-page.container > #text-holder {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 3rem;
  pointer-events: none;
  z-index: -2;
}
div.landing-page.container > #text-holder svg {
  fill: rgb(var(--rgb-primary)/60%);
  max-width: 60%;
  min-width: 60%;
}
div.landing-page.container > #text-holder p {
  font-family: "Manrope", sans-serif;
  color: rgb(var(--rgb-primary)/90%);
  font-size: 4rem;
  font-weight: 800;
  line-height: 0;
  user-select: none;
}
div.landing-page.container #particles {
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  min-height: var(--app-height);
  display: flex;
  align-items: center;
}
div.landing-page.container #particles > * {
  height: 100vh !important;
}
@media only screen and (max-width: 1080px) {
  div.landing-page.container > #text-holder {
    gap: 1rem;
  }
  div.landing-page.container > #text-holder p {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=styles.css.map */
