* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: system-ui, sans-serif;
    color: black;
    background-color: white;
  }
  
  /* nav { */
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* align-items: center; */
    /* justify-content: center; */
    /* padding: 0.5rem; */
    /* gap: 0.5rem; */
    /* border-bottom: solid 1px #aaa; */
    /* background-color: #eee; */
  /* } */
  h1
  {
    text-align: center;
  }
  /* nav a { */
    /* display: inline-block; */
    /* min-width: 9rem; */
    /* padding: 0.5rem; */
    /* border-radius: 0.2rem; */
    /* border: solid 1px rgb(22, 22, 22); */
    /* text-align: center; */
    /* text-decoration: none; */
    /* color: #1b1b1b; */
  /* } */
  
  nav a[aria-current='page'] {
    color: #000;
    background-color: #d4d4d4;
  }
  
  main {
    padding: 1rem;
  }
  
  h1 {
    font-weight: bold;
    font-size: 1.5rem;
  }
  
  .projects {
    display: flex;
    flex-direction: column;
  }
  
  .project-link {
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 8px;
    color: #212121;
    text-decoration: none;
    border: 2px solid #212121;
    margin-top: 5px;
  }
  