body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e9ebee;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
  }
  .subtext {
    color: grey;
  }
  .container {
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
    background-color: #fff;
    border-radius: 18px;
    padding-top: 0px; /* Add padding to push content down */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height:  500px;
  }
  
  .header {
    background: linear-gradient(135deg, #12c2e9, #c471ed, #f64f59);
    padding: 10px;
    position: relative;
  }
  
  .telegram-icon {
    width: 140px;
    height: 35px;
  }
  
  .profile-pic {
    margin-top: -50px; /* Adjust this value as needed */
    position: relative; /* Add this line */
    z-index: 10; /* Add this line */
    padding-top: 60px
  }
  
  .profile-pic img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .channel-info {
    margin: 20px 0 40px;
  }
  
  h2 {
    color: #333;
    font-size: 24px;
    margin-top: 10px;
    font-weight: bold;
  }
  
  .channel-info p {
    margin: 5px 0;
    font-size: 14px;
  }
  
  .join-btn {
    background-color: #057eff;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 22px;
    border-radius: 25px;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    margin-bottom: 20px;
    text-decoration: none;
  }
  
  .join-btn:hover {
    background-color: #006699;
  }
  
 /* Add responsiveness */
  @media (max-width: 480px) {
    .container {
      margin: 10px;
    }
  
    .join-btn {
      padding: 10px 20px;
      font-size: 22px;
    }
    
  }
  