/*This is for the stupid index.html page so i can make sure theres an EXPLICIT warning that if its not on a 1920x1080 screen (or higher idk yet) */


body {
  background-color: #1d224a;
  color: white;
  font-family: 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;
}

