@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@300&display=swap);body{background-color:#000}#text{position:relative;top:170px;text-align:center;font-family:'Noto Sans Mono',monospace;text-shadow:0 0 3px #fff}#typur{color:#fff;position:relative;top:170px;text-align:center;font-family:'Noto Sans Mono',monospace;text-shadow:0 0 3px #fff}#buttons{text-align:center;position:relative;top:175px}
#video {
    filter: brightness(50%);
}

.sparkletext {
  background-image: url('sparkle.gif');
  background-repeat: no-repeat;
  color: transparent;
}

#text {
    background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet, rgb(39, 222, 247));
    background-size: 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: rainbow 10s infinite linear;
    overflow: visible;
  }
  
@keyframes rainbow {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }


