.your-logo {
    max-width: 100%;
    height: auto;
    width: 300px; /* Adjust this to match your social logos */
    vertical-align: middle;
    margin: 0 5px; /* Adds some space around the logo */
  }
  
  /* Media query for responsiveness */
  @media (max-width: 768px) {
    .your-logo {
      width: 25px; /* Slightly smaller on mobile devices */
    }
  }