:root {
    --sheet-bg: white;
    --outer-bg: #282828;
    
    --color-text: black;
    --color-accent: #4E598C;

    --line-thickness: 0.7mm;

    --size-text-p: 1rem;
    --size-text-h2: 1.5rem;
    --size-text-h3: 1.05rem;

    --gradient-line: linear-gradient(to right,
      color-mix(in srgb, var(--color-accent), transparent 50%), 
      color-mix(in srgb, var(--color-accent), transparent 99%)
    ) bottom / 100% 2px no-repeat;
}

html {
    font-size: 15px;
    color: var(--color-text);
}

body {
    font-family: 'SN Pro';
    background-color: var(--outer-bg);
    line-height: normal;
}

.sheet
{
    zoom: 1;
    background-color: var(--sheet-bg);
    height: 100%;
}

@media print
{
    .sheet
    {
        zoom: 1 !important;
    }
}

article header h1
{
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
}

article header h2 
{
    font-size: 1.5rem;
    text-align: center;
    border-bottom: none;
}

article section {
    margin-bottom: 1rem;
}

article section h2 {
    font-size: var(--size-text-h2);
    font-weight: 700;
    padding-bottom: 0.5rem;
    margin-bottom: 0.6rem;
    background: var(--gradient-line);
}

article section h3 {
    font-weight: bold;
    font-size: var(--size-text-h3);
}

article section p, article section ul {
    padding-bottom: 0.25rem;
    font-size: var(--size-text-p);
}

article section em {
    font-style: italic;
}

article section strong {
    font-weight: bold;
}

article section li > ul {
    list-style-type: square;
}

article section ul {
    list-style-type: circle;
    list-style-position: inside;
    line-height: 1.7em;
    margin-left: 3em;
}



article section h4 {
    font-size: 1em;
    font-weight: 700;
}

/* Making FA icons have a little space after the text */
i.fa {
    color: var(--color-accent);
    margin-right: 0.25rem;
}

.row {
  display: flex;
}

.column {
  flex: 50%;
}