.pagewrap {
    display: flex;
    /*vertically stack children*/
    flex-direction: column;
    /* expand to take full height of page */
    /* min-height overrides both height & max-height */
    min-height: 100vh;
}
main {
    flex-grow: 1;
}