html, body {
    overflow-x: hidden;
}

.content {
    margin-top: calc(5*var(--behnke-basic));
    max-width: 100%;
    max-height: calc(100vh - 10 * var(--behnke-basic));
    overflow-y: scroll;
    padding: var(--behnke-basic);
    box-sizing: border-box;
}

footer {
    position: absolute;
    box-sizing: border-box;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(5 * var(--behnke-basic));
    background-color: var(--behnke-white);
}

footer a{
    color: var(--behnke-medium-gray);
    font-size: var(--behnke-smaller-font-size);
    text-decoration: none;
}

footer a:hover {
    color: var(--behnke-hover);
    cursor: pointer;
}

footer a {
    margin: var(--behnke-basic);
}