@keyframes bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-1vh); }
  100% { transform: translateY(0); }
}

@keyframes redlight {
    0%   { background-color:hsl(0, 77.70%, 42.20%); }
    50%   { background-color:hsl(0, 77.70%, 60.20%); }
  100% { background-color:hsl(0, 77.70%, 42.20%); }
}