html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000; 
  }

  #tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
  }

  .profile-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: #111111; 
    padding: 40px;
    border-radius: 12px; 
    z-index: 10;
    max-width: 350px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    color: white;
  }

  .profile-pic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
    margin-bottom: 20px;
  }

  .social-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #333;
    color: white;
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
  }

  .social-link i {
    margin-right: 10px;
    font-size: 22px;
    
  }

  .social-link:hover {
    background: #444;
    transform: translateX(5px);
  }
  