:root {
    --primaryColor: #383838;
}

body {
    color: var(--primaryColor);
    font-family: Roboto, sans-serif;
    font-size: 16px;
    letter-spacing: .25px;
    line-height: 24px;
    margin: 0;
}

h1 {
    font-family: Arial, sans-serif;
    font-size: 24px;
    letter-spacing: 0.15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

h2 {
    font-size: 18px;
    letter-spacing: 0.15px;
    margin-bottom: 18px;
}

p {
    margin-top: 0;
}

.main {
    background-color: #fafafa;
    display: flex;
    -webkit-box-flex: 1;
    flex-grow: 1;
    overflow-y: auto;
    padding: 3rem;
    -webkit-box-pack: center;
    justify-content: center;
}

.content {
    width: 100%;
    max-width: 900px;
    margin: auto;
    line-height: 1.5;
}

.section {
    margin-bottom: 20px;
}

.title {
    text-align: center;
}

.columns {
    display: flex;

    > * {
        width: 50%;
    }
}

.header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header img {
    max-height: 80px;
}

.underline {
    text-decoration: underline;
}

.footnote {
    text-decoration: none;
    color: var(--primaryColor);
}

.keep-formatting {
    white-space: pre;
}

.section-header {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    padding-top: 40px;
}