.result-banner {
  background: linear-gradient(270deg, #ff6f00, #52d109, #ffa726, #bd0432);
  background-size: 800% 800%;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 28px;
  font-weight: 700 !important;
  animation: animatedGradient 10s ease infinite;
  border-radius: 12px;
  border: 3px solid white;
}

@keyframes animatedGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
