/* Animation */
@keyframes glowPulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.15);
    }
    100% {
      transform: scale(1);
    }
  }
.logo-animation {
    animation: bounce 2s infinite;
    max-width: 25%;
    height: auto;
    animation: glowPulse 2.5s infinite ease-in-out;
    transform-origin: center;
    border-radius: 50%; 
    padding: 5px; 
}