body,
html,
#app {
  margin: 0;
  width: 100%;
  height: 100%;
  background: rgb(2, 0, 36);
    background: linear-gradient(0deg, rgb(0, 9, 34) 0%, rgb(0, 6, 90) 41%, rgb(210, 221, 255) 100%);

}

#app {
  position: relative;
  height: 100%;
  font-family: "Inter", serif;
}

.hero {
  height: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1,
h2 {
  margin: 0;
  padding: 0;
  color: white;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  line-height: 100%;
  user-select: none;
}

h1 {
  position: relative;
  z-index: 2;
  font-size: 17vw;
  font-weight: 700;
  letter-spacing: -.08ch;
}

h2 {
  font-size: 1.25vw;
  font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 5px;
}

#webgl-canvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  filter: grayscale(100);
  mix-blend-mode: multiply;

}

.textContainer {
  position: fixed;
  width: 100%;
  bottom: 100px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-align: center;
  z-index: 20;
  color: white;
  flex-direction: column;
}

.subTxt {
  width: 100%;
}

.logo {
  width: 4vw;
  z-index: 20;
  transform: translateY(75px);
}


@media screen and (max-width: 1240px) {

.logo {
    width: 5vw;
    transform: translateY(25px);
  }

}