:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}
html,body{
  height:100%;
}
body {
  background: #000009;
  background-size:cover;
  margin:0;
}
.logo {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  user-select: none;
}

.logo b{
  font: 700 7vh "Inter";
  letter-spacing: -3px;
  color: #fffafa;
  transform: scaleX(1.5);
  text-shadow: 0 -40px 100px, 0 0 2px, 0 0 1em #fdfaff, 0 0 0.5em #fdfaff, 0 0 0.1em #fdfaff, 0 10px 3px #000;
}
.logo b span{
  animation: blink linear infinite 3s;
}

@keyframes blink {
  78% {
    color: inherit;
    text-shadow: inherit;
  }
  79%{
     color: #fff;
  }
  80% {
      text-shadow: 0 -40px 100px, 0 0 2px, 0 0 1em #fdfaff, 0 0 0.5em #adaaaf, 0 0 0.1em #fdfaff, 0 10px 3px #000;
  }
  81% {
    color: inherit;
    text-shadow: inherit;
  }
  82% {
    color: #aaa;
    text-shadow: none;
  }
  83% {
    color: inherit;
    text-shadow: inherit;
  }
  92% {
    color: #aaa;
    text-shadow: none;
  }
  92.5% {
    color: inherit;
    text-shadow: inherit;
  }
}