body {
    display: flex;
    flex-flow: row nowrap;
    overflow: hidden;
}

main {
    flex: 1;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    row-gap: 2rem;
    width: 100%;
    height: 100wv;
}

#page-frame {
    width: 100%;
    /* max-width: 60rem; */
    height: 100%;
    border: none;
    flex-grow: 1;
}

#menu-button-container {
    display: none;
}

@media (max-width:780px) {
    #page-frame {
        height: calc(100vh - 2rem);
    }
    #menu-button-container {
        display: initial;
        position: fixed;
        z-index: 100;
        width: 70%;
        background-color: #ffffff;
        text-align: right;
        padding-top: 1rem;
        padding-right: 1rem;
    }
}
