/* CSS code */
body {
    background-color: #f1f1f1;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .profile-section {
    text-align: center;
  }
  
  .profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .bio {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
  }
  
  .links {
    margin-top: 20px;
  }

  .link {
    margin: 10px;
    padding: 10px 20px;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    border: 1px solid #333;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: block;
  }

  .link:hover {
    background-color: #333;
    color: #fff;
  }

  #copyButton {
    background-color: transparent;
    border: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    transition: color 0.3s;
    border: none;
    border-radius: 50px;
  }

  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
  }
  
  .close {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    cursor: pointer;
  }

  .profile-image:hover {
    cursor: pointer;
  }
