/* css styles */
.about-image img {
    object-fit: contain; /* shows the full image */
    object-position: top center;
    width: 300px;
    height: 300px;
  }

  .two-column-body {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
  }
  
  .column-left {
    flex: 1;
    text-align: center;
  }
  
  .column-right {
    flex: 2;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .profile-pic {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  
  .icons a {
    font-size: 1.5rem;
    margin: 0 0.5rem;
    text-decoration: none;
  }
  
  