body {
      margin: 0;
      height: 100vh;
      overflow: hidden;
      position: relative;
      background-color: #090c12;
    }

    .grid-bg {
      position: absolute;
      top: -100%;
      left: -50%;
      width: 200%;
      height: 300%;
      background-image:
        linear-gradient(to right, #121824 1px, transparent 1px),
        linear-gradient(to bottom, #121824 1px, transparent 1px);
      background-size: 40px 40px;
      transform: rotate(100deg);
      z-index: -1;
      animation: scroll-down 20s linear infinite;
    }

    @keyframes scroll-down {
      0% {
        transform: rotate(100deg) translateY(0);
      }
      100% {
        transform: rotate(100deg) translateY(400px);
      }
    }

    .content {
      position: relative;
      z-index: 1;
      text-align: center;
      margin-top: 20vh;
      font-family: sans-serif;
      font-size: 2em;
    }

h1 {
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
  text-align: center;
  font-family: "Turret Road", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  margin-top: 200px;
}

p {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Turret Road", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  align-items: center;
  margin-top: -30px;
}

.textanimated {
    white-space: nowrap;
    background: linear-gradient(0deg, #5640c5, #8bacff, #5640c5);
    background-size: auto 200%;
    filter: contrast(150%) drop-shadow(0px 0px 10px #8bacff31);
    -webkit-text-fill-color: transparent;
    background-clip: border-box;
    -webkit-background-clip: text;
    animation: textanimation 3s infinite linear;
    align-items: center;
}

.welcometext {
    margin-top: 35px;
    font-size: 55px;
    cursor: default;
}

@keyframes textanimation {
    from {
        background-position: 0% 0%;
    }

    to {
        background-position: 0% 200%;
    }
}
