body {
    font-family: Georgia, serif;
    max-width: 40rem;
    margin-top: 6rem;
    margin-right: auto;
    margin-bottom: 6rem;
    margin-left: auto;
    line-height: 1.7;
    color: #222;
    background-color: #FFFEE6;
  }
  h1 { font-size: 1.2rem; margin-bottom: 1.5rem; }
  h3 { font-size: 1rem; margin-top: 0.5rem; margin-bottom: 0rem; color: #836953; }
  p { margin-bottom: 1rem; }
  ul { list-style: none; padding: 0; margin-top: 0.2rem;}
  li { margin-bottom: 0rem; }
  a {
    color: inherit;
  }
  a:hover {
    color: #555;
  }
  .portrait {
    float: right;
    width: 140px;
    margin: 0 0 1rem 1.5rem;
    border-radius: 4px;
  }
  .lang-toggle {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
  }
  .lang-toggle button {
    background: none;
    border: none;
    font-family: Georgia, serif;
    font-size: 0.85rem;
    color: #836953;
    cursor: pointer;
    padding: 0;
    letter-spacing: 0.02em;
  }
  .lang-toggle button:hover {
    color: #b8956e;
  }
  .bottom-photo {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 40vh;                /* how far up the screen it reaches */
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.25;               /* "barely there" — tune between 0.1 and 0.25 */
    pointer-events: none;
    z-index: -1;
  
    /* fade the top edge so it rises out of nothing */
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 65%);
    mask-image: linear-gradient(to bottom, transparent, black 65%);
  }
  @media (max-width: 600px) {
    body {
      margin-top: 3rem;
      margin-left: 1.5rem;
      margin-right: 1.5rem;
    }
    .portrait {
      width: 110px;
    }
  }
