
### `Container`

Flex container for content.

```css

    .container {
        display: flex;
        flex-direction: row;
        -webkit-overflow-scrolling: touch;
        height: 100%;
        flex: 1;
    }

    @media (max-width: 800px) {
        .container {
            margin-top: 64px;
        }
    }

```