/* 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;
}

.rainbow-text {
  padding-top: 3vh;
  padding-bottom: 3vh;
  height: 3vh;
  display: inline-block;
  background-image:
    linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet, red); 
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  animation: scrollingAnimation 50s linear infinite;
}

@keyframes scrollingAnimation {
  to {
    background-position: 4500vh;
  }
}

.wavy {
    position: relative;
}

.wavy span {
    position: relative;
    text-overflow: visible;
    display: inline-block;
    animation: animate 2s ease-in-out infinite;
    animation-delay: calc(0.1s * var(--i));
}

@keyframes animate {
    0% {
        transform: translateY(20px);
    }
    
    50% {
      transform: translateY(-20px);  
    }
    
    100% {
      transform: translateY(20px);
    }
}