* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
  }
  
  body {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    width: 90%;
    max-width: 600px;
  }
  
  .portfolio-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .header-row {
    border-bottom: 2px solid #333;
  }
  
  .logo-cell {
    width: 100px;
    vertical-align: top;
    padding: 10px;
  }
  
  .logo {
    width: 80px;
    height: 80px;
    display: block;
  }
  
  .name-cell {
    padding: 10px;
  }
  
  .name {
    font-size: 1.8em;
  }
  
  .description-cell {
    padding: 10px;
  }
  
  .description {
    font-size: 1em;
    color: #ccc;
  }
  
  .keyword {
    width: 30%;
    padding: 10px;
    font-weight: bold;
    text-align: left;
  }
  
  .value {
    width: 70%;
    padding: 10px;
    text-align: left;
  }
  
  .lang-icons i, .socials a i, .copy-btn i {
    color: #00ff00;
    margin-right: 10px;
    font-size: 24px;
  }
  
  .lang-icons .lang-icon-cpp {

    width: 50px; /* Set width to match other icons */
    height: 50px; /* Set height to match other icons */
    fill: #00ff00; /* Make sure the color is applied */
  }
  
  
  .socials a {
    color: inherit;
    text-decoration: none;
    margin-right: 15px;
  }
  
  .project-list, .education-list {
    list-style: none;
  }
  
  .project-list a, .education-list li {
    color: #fff;
    text-decoration: none;
  }
  
  .project-list a i {
    font-size: 16px;
  }
  
  .copy-btn {
    background: none;
    border: none;
    color: #00ff00;
    cursor: pointer;
    font-size: 0.9em;
    margin-left: 10px;
  }
  
  @media (max-width: 600px) {
    .logo {
      width: 60px;
      height: 60px;
    }
    
    .name {
      font-size: 1.5em;
    }
    
    .description {
      font-size: 0.9em;
    }
    
    .keyword, .value {
      font-size: 0.9em;
    }
  }
  

  .pdx{
    margin-left: 10px;
  }

  .pdx:hover{
    color: rgb(238, 61, 61);
  }