@keyframes breath {
    0%, 100% { transform: scale(0.2); }
    50% { transform: scale(0.3); }
  }
  
  #logo {
    animation: breath 2s infinite;
  }