:root {
    --font-size: 15px;
    --font-size-multiplier: 1;
}

body {
    font-family:'Open Sans', Arial, sans-serif;
    color: #424242;
    background-color: white;
    overflow-y: auto;

    line-height: 1;
    font-size: var(--font-size);
}

body * {
    font-family: inherit;
    color: inherit;

    font-size: calc(var(--font-size) * var(--font-size-multiplier));
}

body p {
    line-height: 1.55;
    margin: 0;
}

body p a {
    text-decoration: underline;
}

body p + p {
    margin-top: .7em;
}

body p a:hover {
    text-decoration: none;
}

body p + p {
    margin-top: .7em;
}

strong {
    font-weight: 600;
}



.site-footer {
    text-align: center;
    --font-size-multiplier: .8;
    display: flex;
    align-items: center;
    justify-content: space-between;


    padding: 2em;
    background-color: #fafafa;
    border-top: 1px solid #eee;

    line-height: 1.3;
}

.site-footer a:hover {
    text-decoration: underline;
}



@media (max-width: 769px) {
    .site-footer {
        flex-direction: column;
        row-gap: 1em;
    }
}