@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');
* {
    box-sizing: border-box;
}

html {
    height: 100%;
    display: block;
}
html, body {
  overflow: hidden;
}

body {
  cursor: none;
  margin: 0;
  background: black;
  color: black;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flares {
    z-index: 0;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(#010202,transparent);
    position: absolute;
    top: 0;
}

.flares img {
    position: absolute;
    top: 0%;
    bottom: auto;

}
.flares .flares-top {
    left: 0%;
    right: 0%;
}

.flares .flares-right {
    left: auto;
    right: 0%;
}

.container {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    height: 100vh;
    max-width: 1223px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.hero {
    width: 100%
}


.logo {
    width: 100%;
    text-align: center;
    margin-top: 60px
}

h1 {
    width: auto;
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    color: #fff
}

.hide-mobile {
    display: none;
}

@media screen and (min-width: 991px) {
    .hide-mobile {
        display: block;
    }

    h1 {
        margin-bottom: 24px;
        font-size: 64px;
    }
}

.glitch span {
  position: absolute;
  top: 0;
  left: 0;
}

.glitch span:first-child {
  animation: glitch 500ms infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  transform: translate(-0.04em, -0.03em);
  opacity: 0.75;
}

.glitch span:last-child {
  animation: glitch 375ms infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  transform: translate(0.04em, 0.03em);
  opacity: 0.75;
}

@keyframes glitch {
  0% {
    text-shadow: 0.05em 0 0 red, -0.03em -0.04em 0 green,
      0.025em 0.04em 0 blue;
  }
  15% {
    text-shadow: 0.05em 0 0 red, -0.03em -0.04em 0 green,
      0.025em 0.04em 0 blue;
  }
  16% {
    text-shadow: -0.05em -0.025em 0 red, 0.025em 0.035em 0 green,
      -0.05em -0.05em 0 blue;
  }
  49% {
    text-shadow: -0.05em -0.025em 0 red, 0.025em 0.035em 0 green,
      -0.05em -0.05em 0 blue;
  }
  50% {
    text-shadow: 0.05em 0.035em 0 red, 0.03em 0 0 green,
      0 -0.04em 0 blue;
  }
  99% {
    text-shadow: 0.05em 0.035em 0 red, 0.03em 0 0 green,
      0 -0.04em 0 blue;
  }
  100% {
    text-shadow: -0.05em 0 0 red, -0.025em -0.04em 0 green,
      -0.04em -0.025em 0 blue;
  }
}

  99% {
    text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
      0 -0.04em 0 #fffc00;
  }
  100% {
    text-shadow: -0.05em 0 0 #00fffc, -0.025em -0.04em 0 #fc00ff,
      -0.04em -0.025em 0 #fffc00;
  }
}

.container {
  text-align: center;
}

.glitch {
  font-size: 5rem;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  text-shadow: 0.05em 0 0 red, -0.03em -0.04em 0 green,
    0.025em 0.04em 0 blue;
  animation: glitch 725ms infinite;
}


