Frame 156.png

<style>
  .pill-container {
    padding: 8px 12px;
    background-color: #1877F2; /* Set background color to #1877F2 */
    border-radius: 20px; /* Adjust as needed to give the pill shape */
    display: inline-block; /* Ensure it wraps content properly */
    position: relative; /* Add position relative for centering */
  }

  .pill-container img {
    vertical-align: middle; /* Align the image vertically */
  }

  .pill-container span {
    margin-left: 8px; /* Adjust as needed to give space between image and text */
    color: #ffffff; /* Set text color to white */
  }

  /* Center the pill horizontally */
  .center {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Gradient border */
  .pill-border {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 24px; /* Match the border radius of the pill */
    background: linear-gradient(135deg, #26F0FF, #E82356);
    z-index: -1;
  }
</style>

<div class="center">
  <div class="pill-container">
    <div class="pill-border"></div>
    <img src="<https://cdn.shopify.com/s/files/1/0812/1414/4845/files/facebook.png?v=1709554524>" alt="Facebook Logo">
    <span>Over 4M Views on Facebook</span>
  </div>
</div>