html, body {
    margin: 0;
    padding: 0;
    background-color: #101418;
    color: #00ff66;
    font-family: 'Fira Code', monospace;
    font-size: 16px;
    line-height: 1.6;
  }
  
  a {
    color: #00ff66;
    text-decoration: underline;
  }
  
  .bio-wrapper {
    display: flex;
    justify-content: center;
    padding: 2rem;
  }
  
  .bio-content {
    display: flex;
    flex-direction: column;
    max-width: 960px;
    width: 100%;
    gap: 2rem;
  }
  
  .bio-image img {
    width: 100%;
    max-width: 256px;
    height: auto;
    display: block;
    margin: 1rem auto;
  }
  
  .bio-text h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .bio-text h2 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }
  
  .bio-text ul {
    padding-left: 1.2rem;
    margin: 0;
  }
  
  .bio-text li {
    margin-bottom: 0.5rem;
  }
  
  @media (min-width: 768px) {
    .bio-content {
      flex-direction: row;
    }
  
    .bio-image {
      flex: 0 0 256px;
    }
  
    .bio-text {
      padding-left: 2rem;
    }
  }