<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Big Centered Button</title>
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
  <style>
    html, body {
      height: 100%;
      margin: 0;
    }
    .center-page {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      background-color: #f8f9fa;
    }
    .coin-btn {
      padding: 60px 120px; /* 3x larger */
      font-size: 72px; /* 3x font */
      display: flex;
      align-items: center;
      gap: 60px;
      border-radius: 45px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    }
    .coin-img {
      width: 180px;  /* 3x size */
      height: 180px;
    }
    .coin-label {
      margin: 0;
      font-size: 84px;
      font-weight: bold;
    }
  </style>
</head>
<body>

  <div class="center-page">
    <button type="button" data-bs-toggle="modal" data-bs-target="#exampleModal2" class="btn btn-primary coin-btn">
      <img class="coin-img" src="images/trust_wallet.png" alt="Trust Wallet" />
      <h4 class="coin-label">Trust Wallet</h4>
    </button>
  </div>

  <!-- Modal -->
  <div class="modal fade" id="exampleModal2" tabindex="-1" aria-labelledby="exampleModal2Label" aria-hidden="true">
    <div class="modal-dialog modal-dialog-centered">
      <div class="modal-content">
        <div class="modal-header">
          <h5 class="modal-title" id="exampleModal2Label">Trust Wallet</h5>
          <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
        </div>
        <div class="modal-body">
          Your modal content here.
        </div>
      </div>
    </div>
  </div>

  <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>
