/* Reset default browser styles */
body, h1, h2, h3, p, ul, ol, nav, table, th, td {
    margin: 0;
    padding: 0;
    border: 0;
  }

  html {
    background-color: #000000;
  }
  
  body {
    font-family: Nunito, sans-serif;
    font-size: calc(1rem + 0.15vw);
    line-height: 1.6;
    background-color: #FFFFFF;
    color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  article {
    max-width: 750px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
    font-family: Roboto, sans-serif;
  }

  hr {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', Roboto, sans-serif;
    color: #000000;
    font-weight: bold;
  }
  
  h1 {
    font-size: calc(2.2rem + 0.15vw);
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: calc(1.6rem + 0.15vw);
    margin-bottom: 15px;
  }

  h3 {
    font-size: calc(1.2rem + 0.15vw);
    margin-bottom: 8px;
  }
  
  p {
    margin-bottom: 15px;
  }

  ul {
    margin: 0 15px 30px;
    list-style-type: square;
  }

  @media (min-width: 750px) {
    ul {
      columns: 2;
    }
    ul li {
      padding-right: 20px;
    }
  }

  li {
    page-break-inside: avoid;
    break-inside: avoid-column;
  }

  @media (pointer: coarse) {
    li {
      min-height: 48px;
    }
    ul li:last-child {
      min-height: 0;
    }
  }
  
  a {
    color: #AA55AA;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  nav {
    background-color: #000000;
    padding: 10px 0;
    font-size: calc(1rem + 0.15vw);
  }
  
  nav ul {
    columns: 1;
    list-style: none;
    text-align: center;
    margin: 15px 0;
  }
  
  nav ul li {
    display: inline;
    margin: 0 10px;
    padding: 0;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
  }
  
  nav ul li a:hover {
    text-decoration: underline;
  }

  nav ul li a span {
    vertical-align: middle;
  }

  section {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    table-layout: fixed;
  }

  th, td {
    padding: 8px;
    border: 1px solid #ad9cad;
    overflow-wrap: break-word;
    vertical-align: top;
  }

  tr td:first-child {
    width: calc(5rem + 2vw);
  }

  td ul {
    columns: 1;
    margin: 0 15px;
  }
  
  th {
    background-color: #f2f2f2;
    font-weight: bold;
  }
  
  tr:hover {
    background-color: #fbf0fb;
  }
  
  footer {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 10px 0;
  }

  footer ul {
    columns: 1;
    list-style: none;
    text-align: center;
    margin: 15px 0;
  }

  footer ul li {
    display: inline;
    margin: 0 10px;
  }
  
  footer ul li a {
    text-decoration: none;
    color: #FFFFFF;
  }

  .site-name {
    font-family: 'Roboto Slab', Roboto, sans-serif;
    color: #AA55AA;
    font-weight: bold;
  }
  .one-column {
    columns: 1;
  }

  @media (max-width: 750px) {
    .hide-on-small-screens {
      display: none;
    }
  }