body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      /* 1.6 = 160% */
    }

    h1,
    h2,
    h3 {
      color: #333;
    }

    p {
      color: #555;
      margin-bottom: 1em;
      /* 1em = 16px */
      font-size: 1em;
      text-indent: 2em;
    }

    ul {
      margin: 1em 0;
      /* 1em = 16px */
      padding-left: 20px;
      /* Indent for list items */
    }

    ul li {
      margin-bottom: 0.3em;
      /* 0.5em = 8px */
      list-style: none;
    }

    ul li a {
      color: black;
      font-weight: bold;
      /* Link color */
      text-decoration: none;
    }

    ol {
      color: #555;
    }


    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 1em;
      /* 1em = 16px */
    }

    th,
    td {
      border: 1px solid #ddd;
      padding: 8px;
      /* 8px = 0.5em */
      text-align: left;
    }

    th {
      background-color: #f2f2f2;
    }

    tr:nth-child(even) {
      background-color: #f9f9f9;
      /* Alternating row color */
    }

    a {
      color: #1a73e8;
      /* Link color */
    }