html,
body {
    width: 100%;
    height: 100%;
    background-color: var(--secondary-background-color);
}

#app {
    height: 100%;
    width: 80%;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 1em;
    width: 100%;

    font-size: 0.875em;
}

footer a,
footer button {
    margin: 0 1em 0 1em;
}

footer .liability {
    font-size: 0.8em;
    color: var(--secondary-text-color);
    margin-bottom: 0.5em;
}

@media (max-width: 768px) {
    html, body {
        font-size: 0.9em;
    }

    .container-fluid {
        width: 100%;
    }

    #app {
        width: 100%;
    }

    footer {
        display: none;
    }
}