/* 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: white;
  color: black;
  font-family: Verdana;
}

 /* Hide scrollbar for Chrome, Safari and Opera */
.scroll::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scroll {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
  
@keyframes jitter {
  0% {transform: translate(0,0);}
  25% {transform: translate(-0.1px, 0px);}
  50% {transform: translate(0.1px, 0px);}
  75% {transform: translate(-0.1px, 0px);}
  100% {transform: translate(0.1px, 0px);}
  }
  
  .jitter-text {
    animation: jitter 0.36s infinite;
    display: inline-block;
  }