.spline-scene {
  z-index: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
}

.body {
  background-color: #06070a;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block {
  z-index: 2;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.lottie-animation {
  width: 100px;
  height: 100px;
}

.heading {
  color: #fff;
  font-family: Inconsolata, monospace;
  font-size: 14vw;
  font-weight: 700;
  line-height: 11vw;
}

.heading.mob {
  display: none;
}

.paragraph {
  color: #fff;
  font-family: Lato, sans-serif;
  font-weight: 300;
}

.rrt {
  color: #fff;
  text-align: center;
  font-family: Inconsolata, monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

.rrt.vd {
  font-size: 2vw;
}

.text-span {
  color: #00ffe5;
}

.div-block-2 {
  z-index: 2;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  pointer-events: none;
  border-radius: 64px;
  flex-direction: column;
  align-items: center;
  padding: 22px 71px;
  display: flex;
  position: absolute;
}

@media screen and (max-width: 479px) {
  .heading {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20vw;
    line-height: 20vw;
  }

  .heading.mob {
    font-size: 40vw;
    line-height: 33vw;
    display: block;
  }

  .heading.pc {
    display: none;
  }

  .rrt {
    width: 200px;
    text-align: right;
    font-size: 14px;
    line-height: 20px;
  }

  .div-block-2 {
    pointer-events: auto;
    border-radius: 32px;
    align-items: flex-end;
    padding: 12px 31px 12px 13px;
  }
}


