body {
    text-align: center;
    margin-top: 48px;
    font-family: "Inconsolata", "Arial", sans-serif;
    background: white;
  }

  @media (prefers-color-scheme: dark) {
    body {
      background: #364652;
    }
  }

  h1, p {
    color: #364652;
  }

  @media (prefers-color-scheme: dark) {
    h1, p {
      color: #e6ecf0;
    }
  }

  p {
    font-size: 22px;
  }

  .profile-photo {
    border-radius: 5%;
    width: 300px;
  }

  .link-tree {
    list-style: none;
    padding: 0;
    font-size: 20px;
  }

  .link-tree > li {
    margin: 12px 0;
  }

  .link-tree >li a {
    color: #364652;
    background: #C7DBE6;
    border-radius: 6px;
    padding: 12px;
    text-decoration: none;
    max-width: 360px;
    width: 90%;
    display: block;
    margin: 0 auto;
    color: rgb(174, 19, 19)
  } 

  .link-tree > li:nth-child(1) a {
    background: #B9D2DF;
  }

  @media (prefers-color-scheme: dark) {
    .link-tree > li:nth-child(1) a {
      background: #dfeaf0;
    }
  }

  .link-tree > li:nth-child(2) a {
    background: #9CC0D3;
  }

  @media (prefers-color-scheme: dark) {
    .link-tree > li:nth-child(2) a {
      background: #c8dde8;
    }
  }

  .link-tree > li:nth-child(3) a {
    background: #659BB8;
  }

  @media (prefers-color-scheme: dark) {
    .link-tree > li:nth-child(3) a {
      background: #9cc2d6;
    }
  }

  .link-tree > li:nth-child(4) a {
    background: #4D88A8;
  }

  @media (prefers-color-scheme: dark) {
    .link-tree > li:nth-child(4) a {
      background: #7fb6d4;
    }
  }

  .link-tree > li a:hover,
  .link-tree > li a:focus {
    color: white;
    background: #2D4F62;
  }

  @media (prefers-color-scheme: dark) {
    .link-tree > li a:hover,
    .link-tree > li a:focus {
      color: white;
      background: #4d7e99;
    }
  }
