@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap");
@font-face {
  font-family: "BatmanForeverAlternate";
  src: url("./batmfa__.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
  font-family: "Audiowide", sans-serif;
}

canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
}
.aboveCanvas {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background: #00000094;
}
h1 {
  font-size: 7vw;
  text-align: center;
  font-family: "BatmanForeverAlternate", sans-serif;
  /* position: fixed; */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.88) 50%,
    rgba(255, 255, 255, 0.8) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.88) 50%,
    rgba(255, 255, 255, 0.8) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 {
  /* position: fixed; */
  font-size: 4vw;
  font-family: "Audiowide", sans-serif;
  background: linear-gradient(
    180deg,
    rgba(103, 95, 209, 0.6) 0%,
    rgba(103, 95, 209, 1) 50%,
    rgba(103, 95, 209, 0.6) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(103, 95, 209, 0.6) 0%,
    rgba(103, 95, 209, 1) 50%,
    rgba(103, 95, 209, 0.6) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  bottom: 28%;
}

h6 {
  /* position: fixed; */
  font-size: 72px;
  font-size: 3vw;
  bottom: 5vh;
  font-weight: 100;
  color: rgba(240, 248, 255, 0.473);
  font-family: "Audiowide", sans-serif;
}
.nav {
  position: fixed;
  top: 1rem;
  width: 90%;
  display: flex;
  justify-content: space-around;
  align-items: center;

  /* From https://css.glass */
  background: rgba(207, 205, 205, 0.09);
  border-radius: 160px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.2px);
  -webkit-backdrop-filter: blur(2.2px);
  border: 1px solid rgba(207, 205, 205, 0.43);
  padding: 0.5rem;
}
.vpLogo {
  height: 5rem;
  /* -webkit-filter: grayscale(100%); Safari 6.0 - 9.0 */
  /* filter: grayscale(100%); */
}
.link-icon {
  height: 2rem;
}
.logo-links {
  display: flex;
  gap: 2rem;
}
.mobileView,
.logo-links-mobile {
  display: none;
}
.bodyy {
  display: flex;
  height: 80vh;
  width: 100vw;

  transform: translateY(15%);
  flex-direction: column;
  align-items: center;
  gap: 2.3rem;
  /* position:relative; */
  /* z-index:2; */
}
.link {
  padding: 0.8rem;
  background: #fff4ff22;
  border-radius: 0.6rem;
  backdrop-filter: blur(1px);
}
.link a:visited {
  color: #ce00ff;
}
.link a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #dc48ff;
  text-decoration: none;
}
a img{
  border-radius:6px;
}
@media only screen and (max-width: 600px) {
  h2 {
    bottom: 37%;
  }

  .logo-links {
    display: none;
  }
  .mobileView {
    display: flex;
    /* position: fixed; */
    bottom: 10vh;
    color: rgba(255, 255, 255, 0.781);
    /* align-items: center; */
    gap: 1rem;
  }
  .logo-links-mobile {
    display: inline;
  }
}
