* {
    box-sizing: border-box;
}

html {
    font-family: 'Linotype';
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    margin: 0;
    padding: 0;
    flex-grow: 1;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;

    max-height: 100vh;
}

main {
    flex-grow: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;

    max-height: 100vh;    
}

main #frontend_content {
    flex-grow: 1;
    height: 100%;
    width: 46.18vh;
    position: relative;

    display: flex;
    flex-direction: column;

    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;    
}


/* footer { */
/*     display: none; */
/* } */
/* footer #footer_inner { */
/*     max-width: 1000px; */
/*     margin-left: auto; */
/*     margin-right: auto; */

/*     padding-top: 4px; */
/*     padding-bottom: 4px; */

/*     display: flex; */
/*     flex-direction: row; */
/*     align-items: center; */
/*     justify-content: space-between; */

/*     font-family: 'DIN_Alternate'; */
/*     font-size: 0.65rem; */
/*     color: #777; */
/* } */
/* footer #footer_inner #footer_inner_copyright { */
/*     text-align: center; */
/* } */
/* footer #footer_inner #footer_inner_links { */
/*     display: flex; */
/*     flex-direction: row; */
/*     align-items: center; */
/*     justify-content: space-evenly; */
/*     column-gap: 16px; */
/* } */
/* footer #footer_inner #footer_inner_links a { */
/*     text-decoration: none; */
/*     color: inherit; */
/* } */


@media only screen and (max-width: 600px) {
}
