body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

.logo-container {
  animation: pulseGlow 2s infinite ease-in-out;
}

.animated-logo {
  width: 200px;
  height: auto;
}

/* Pulse + Glow animation */
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px #007BFF);
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px #007BFF);
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px #007BFF);
  }
}
