/* 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: #1d224a;
  color: white;
  font-family: Papyrus, Verdana;
}

a .drivelink {
  color: #f7f739;
}

a:hover .drivelink {
  color: #4ff739;
}

a:active .drivelink {
  color: #39ebf7;
}

.moving-text {
  display: inline-block;
  animation: slide-in /*animname*/ 0.9s/*animtiming*/ alternate/*animdirection, goes back and forth now*/ infinite/*how many times it does it :P*/;
}

@keyframes slide-in {
    from{
      transform: translateY(-5px);
    }
    to{
      transform: translateY(5px);
    }
  }

.moving-text:nth-child(1)
{
  color: #FF76A4;
  animation-delay: 0s;
}
.moving-text:nth-child(2)
{
  color: #FFFFFF;
  animation-delay: 0.5s;
}
.moving-text:nth-child(3)
{
  color: #C011D7;
  animation-delay: 0s;
}
.moving-text:nth-child(4)
{
  color: #000000;
  animation-delay: 0.5s;
}
.moving-text:nth-child(5)
{
  color: #2F3CBE;
  animation-delay: 0s;
}
.moving-text:nth-child(6)
{
  color: #FF76A4;
  animation-delay: 0.5s;
}
.moving-text:nth-child(7)
{
  color: #FFFFFF;
  animation-delay: 0s;
}
