/* 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." */

body {
  background-color: black;
  color: #fe90c9;
  font-family: Courier New;
}

a {
  color: #fe90c9;
  font-weight: bold;
  text-decoration: none;
  animation: Glitch 1s linear infinite;
}



body {
  animation: Text 5s ease-in-out infinite alternate;
}

a {
  animation: Text 5s ease-in-out infinite alternate-reverse;
}


a:hover {
  animation: TextHover 500ms linear infinite alternate;
}

@keyframes Text {
  from {color: #fe90c9;}
  to {color: #54d8da;}
}

@keyframes TextHover {
  from {color: white;}
  to {color: yellow;}

}