body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('/assets/background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
  }
  
  .card {
    display: flex;
    width: 100%;
    flex-direction: row;
    max-width: 1400px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    overflow: hidden;
    padding: 55px;
  }
  
  .left {
    flex: 0 0 32%;
    padding: 5px;
  }
  
  .right {
    flex: 0 0 68%;
    padding: 25px;
  } 
  
  .right h1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  

  .avatar {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  
  .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ddd;
    transition: background 0.3s ease;
    text-decoration: none;
  }
  
  
  .icon:hover {
    background: rgba(255, 255, 255, 0.4);
  }
  
  .projects {
    margin-top: 40px;
  }
  
  .project-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
  }
  
  .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: rgba(255, 255, 255, 0.3);
  }  
