html {
    height: 100%;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    overflow-y: scroll;
}

body {
    font-size: 0.875rem;
    font-family: var(--font-family-primary);
    color: var(--color-text);
}

.page {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

.authenticated .page {
    padding-top: var(--header-height);
}

.content {
    flex: 1;
    box-sizing: border-box;
    padding: 2rem;
}

@media (min-width: 768px) {
    .page {
        flex-direction: row;
    }
}