/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

.blink {
  animation: blinkingText 1s infinite;
}

@keyframes blinkingText {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.blinkcsr {
  animation: blinkingcsrText 1s infinite;
}

@keyframes blinkingcsrText {

  0%,
  100% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.secret {
  color: #161616;
  font-size: 0;
}

.something {
  color: black;
  background-color: white;
  text-align: left;
  font-size: 70%;
}

.somethingh1 {
  color: black;
  background-color: white;
  text-align: left;
  font-size: 150%;
}

.terminal {
  color: lightgreen;
  background-color: black;
  text-align: left;
  font-size: 70%;
  font-family: monospace;
}


.speen {
  animation: spin 3s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@font-face {
  font-family: HyperCam;
  /* set name */
  src: url(/fonts/unregistered-hype.woff) format("woff");
  /* url of the font */
}

.rotategrad {
  background-size: 100vw 100vw;
  background: repeating-linear-gradient(-45deg, lightblue 0%, green 25%, darkslategrey 50%);
  -webkit-animation: 'slide' 30s infinite linear forwards;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

@keyframes slide {
  0% {
    background-position-x: 0%;
  }

  100% {
    background-position-x: 200vw;
  }
}

.menubar {
  white-space: nowrap;
  overflow-x: scroll;
  background-color: black;
  font-size: 4vw;
  border-top: 2px solid grey;
  border-bottom: 2px solid grey;
}