    body {
      margin: 0;
      background: #FFF;
      color: black;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .bio-box {
      display: flex;
      background: #EEE;
      overflow: hidden;
      width: 600px;
      max-width: 90%;
    }

    .bio-info {
      padding: 24px;
      flex: 1;
    }

    .bio-info h2 {
      margin-top: 0;
    }

    .bio-image {
    width: 150px;     
    height: auto;     
    display: block;
    object-fit: contain;  
    }

    .bio-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .nav-buttons {
      margin-top: 24px;
    }

    .nav-buttons a {
      margin-right: 16px;
      color: #000;
      text-decoration: none;
      cursor: pointer;
    }

    .nav-buttons a:hover {
      color: white;
      text-decoration: underline;
    }