

    .logo-container {
    margin-top: 20px;
      filter: drop-shadow(0 0 10px #ff0707);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.05); opacity: 0.85; }
    }

    .logo-container img {
        padding:0 10px 0 10px;
   
      max-width: 100px;
      height: auto;
    }
