.valslink, h3 a {
   text-shadow: none !important;
}

.bouncingdrone {
    top: 0;
    position: relative;
    animation-name: bouncing_1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
@keyframes bouncing_1 {
  0% {
    top: 0px;
  }
  50% {
    top: 15px;
  }
  100% {
    top: 0px;
  }
}