body {
    font-family: monospace;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
    background: #fff;
    color: #111;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
  }
  h2 {
    font-size: 1.2rem;
    margin: 2rem 0 0.5rem;
  }
  a {
    color: #0056b3;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
 
  .icons a {
    margin-right: 0.75rem;
    font-size: 1.2rem;
    color: #333;
  }
  .footer {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
  }
  .intro {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
  }
  .intro img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
  }
  @media (max-width: 600px) {
    body {
      padding: 1rem;
    }
    .intro {
      flex-direction: column;
      align-items: flex-start;
    }
    .intro img {
      width: 120px;
      height: 120px;
    }
    h1 {
      font-size: 1.5rem;
    }
    h2 {
      font-size: 1rem;
    }
  }