@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

#logo-container img {
  animation: pulse 2s ease-in-out infinite;
}
