html {
    font-size: 16px;
    font-family: "adelle-sans",sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: hsl(0, 0%, 100%);
    color: #000000;
    padding: 1em 4em 5em;
}

header {
    padding-top:20px;
    border-bottom: none;
}

.Logo {
    padding-left: 0;
}

h1 {
    font-size: 3.75em;
    font-weight: bold;
    margin-block-start: 0.67em;
}

h2 {
    font-size: 1.25em;
    font-weight: bold;
    margin-block-start: 2em;
}

h3 {
    font-size: 1.1em;
    font-weight: bold;
    margin-block-start: 2em;
}

main p {
    margin-block-start: 2em;
}

main a {
    /* font-size: 1.25em; */
    color: #4778FF;
    text-decoration: none;
    margin-block-start: 2em;
}

ol ol {
    list-style-type: lower-alpha;
}

.roman {
    list-style-type: lower-roman;
}

.c-1-3 ul ul li {
    margin-block-start: 0.5em;
}

.c-1-3 ul ul {
    list-style: none; /* Remove default bullets */
}

.c-1-3 ul ul li::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #4778FF; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.c-1-3 li {
    font-size: 1.25em;
    margin-block-start: 1em;
}

.c-1-3 > ul {
    /* font-size: 1.25em;
    font-weight: bold;
    margin-block-start: 2em; */
    list-style-type: none;
    padding-left: 0;
}

ul {
    margin-bottom: 1em;
}

ol {
    margin-bottom: 1em;
}

#preamble {
    font-size: 1.25em;
}

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
  }

/* only for screens wider or equal to 800 pixels */
@media only screen and (min-width: 800px) {

    /* code from https://www.thesitewizard.com/css/design-2-column-layout.shtml */
    .c-1-3 {
        width: 30%;
        display: block;
        float: left;
        margin-block-start: 1em;
    }

    .c-2-3 {
        width: 65%;
        display: block;
        float: left;
        padding: 0 0 0 5%;
    }
  }