body {
    margin: 0;
    background-color: #1E1E1E;
    display: flex;
    justify-content: center;
  }
  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0); 
    padding: 20px 0;
    text-align: center;
    z-index: 999;
  }
  .wrapper {
    width: 375px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: 'Helvetica Neue', sans-serif;
  }

  .banner img {
    width: 100%;
    display: block;
  }

  .text-section {
    padding: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
  }
.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 32px;
    background-color: #32D66B;
    color: white;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  
  animation-name: bounce;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }
  .btn-link:hover {
    background-color: #32D66B;
  }
  @keyframes bounce {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }