@keyframes totalglitch {
  0%, 100% {
  filter: hue-rotate(0);
  opacity: 1;
  }
  50% {
  filter: hue-rotate(95deg) brightness(1.2);
  opacity: .8;
  }
  }
  
  body {
  font-family: "Martian Mono", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
  "wdth" 100;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 20px 20px 80px;
  /* animation: totalglitch 5s steps(5) infinite;*/
  font-size: 16px;
  line-height: 1.3;
  }
  
  a {
  color: inherit;
  text-decoration-skip-ink: none;
  text-decoration-thickness: .5px;
  text-underline-offset: .2em;
  }
  
  a:hover {
  color: oklch(0.86 0.2 158.03);
  }
  
  h1 {
  text-transform: uppercase;
  }
  
  .main {
  display: flex;
  }
  
  .info {
  max-width: 640px;
  }
  
  .video {
  position: fixed;
  z-index: -1;
  top: 4%;
  right: -20%;
  width: 75vw;
  }
  
  @media (width < 900px) {
  .video {
  opacity: .3;
  width: 120vw;
  left: -10%;
  right: -10%;
  }
  }
  
  @keyframes blink {
  0%, 100% {
  opacity: 1;
  }
  50% {
  opacity: 0;
  }
  }
  
  video {
  display: block;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  }
  
  video:nth-child(2) {
  translate: 3% 3%;
  z-index: 2;
  mix-blend-mode: overlay;
  filter: hue-rotate(195deg);
  animation: blink 10s steps(2) infinite;
  }
  
  .posts {
  margin-top: 100px;
  }
  
  .posts__title {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 20px;
  }
  
  .spinner {
  background: -webkit-linear-gradient(45deg, oklch(0.86 0.27 159.41), oklch(0.67 0.34 323.26));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  
  .cli {
  /* position: absolute;*/
  pointer-events: none;
  font-size: 12px;
  background: black;
  font-weight: 100;
  }
  
  .links {
  display: flex;
  font-size: 200%;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 2;
  font-weight: 100;
  }
  
  .links a {
  padding: 20px;
  box-sizing: border-box;
  }
  
  @keyframes shine {
  0%, 100% {background: black}
  50% {background: var(--key)}
  }
  
  .shine {
  animation: ;
  }
  
  @media (width < 760px) {
  .links {
  flex-wrap: wrap;
  font-size: 120%;
  text-align: center;
  width: 100%;
  text-align: center;
  justify-content: center;
  }
  
  .links a {
  padding: 10px;
  }
  }