body {
    font-family: serif;
    margin: 2rem 3rem 4rem 3rem;
    color: black;
  }

  header {
    display: flex;              /* Enable flexbox layout */
    justify-content: space-between; /* Push items to opposite ends */


  }
  
  aside {
    background-color: #eee;
}

  h1 {
    margin-top: 0;
    font-weight: bold;
    font-size: 2.2rem;
  }

  h2 {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    margin-top: 2rem;
  }

  h3 {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    margin-top: 1.8rem;
  }

  .subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 0;
  }

  .subheading {
    font-weight: bold;
    font-size: 1.1rem;
  }

  .box {
    background-color: #eee;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .team-box {
    background-color: #eee;
    padding: 1rem 1.2rem;
    max-width: 350px;
    margin-left: auto;
    margin-bottom: 2rem;
  }

  .team-box h3 {
    margin-top: 0;
    margin-bottom: 0.25rem;
  }

  .team-box em {
    display: block;
    margin-bottom: 0.8rem;
  }

  ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 1.2rem;
  }

  a {
    text-decoration: underline;
    color: blue;
  }

  footer {
    text-align: center;
    margin-top: 5rem;
    font-size: 0.9rem;
  }