@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
   /* font-family: 'Poppins', sans-serif; */
   font-family: 'Jost', sans-serif;
   background-color: #000;
}

#wrapper {
   height: 100vh;
   display: flex;
   justify-content: center;   
   align-items: center;
}

#wrapper a, a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: inherit;
}

.channel-split-wrapper {
   position: relative;
   font-size: 64px;
}

.channel-split-static {
   opacity: 0;
}

.channel-split {
   position: absolute;
   top: 0;
   left: 0;
   mix-blend-mode: screen;   
}

.channel-split-red {
   color: #f00;
   animation: ANIMATE-RED 2000ms infinite;
}

.channel-split-green {
   color: #0f0;
}

.channel-split-blue {
   color: #00f;
   animation: ANIMATE-BLUE 2000ms infinite;
}

@keyframes ANIMATE-RED {
   0% {
      transform: translate(0, 0)
   }
   50% {
      transform: translate(3px, 3px)
   }
   100% {
      transform: translate(0, 0)
   }
}

@keyframes ANIMATE-BLUE {
   0% {
      transform: translate(0, 0)
   }
   50% {
      transform: translate(-3px, -3px)
   }
   100% {
      transform: translate(0, 0)
   }
}