body{
    height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: 0.1fr 2.8fr 0.1fr;
}

* {
    box-sizing: border-box;
}

.mm_page_header, #mm_page_footer{
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}
.mm_page_header *, #mm_page_footer *{
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}
.mm_page_header{
    font-family: 'Balsamiq Sans', cursive;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #79aec8;
    color: #f5f1f1;
}
.mm_page_header a {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    text-decoration: none;
    /*color: #f5f1f1;*/
    color: inherit;
}
.mm_page_header a span {
    /*border-bottom: dotted 1px #ffffff;*/
    border-bottom: dotted 1px;
    border-color: inherit;
}
.mm_page_header a:hover{
    opacity: 50%;
}
.mm_page_header span {
    border-bottom: dotted 1px transparent;
}
.mm_page_header img{;
    height: 25px;
}
.mm_page_header__title::after{
    content: ":";
    margin-right: 5px;
}
.mm_page_header__description,.mm_page_header__title{
    margin-left: 5px;
}

.mm_page_header button {
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
    height: 25px;
}
.mm_page_header button:hover {
    opacity: 50%;
}

.mm_page_header__name{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: stretch;
    align-items: center;
}
.mm_page_header__name > * {
    margin-right: 5px;
}

.mm_page_header__logininfo {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: stretch;
    align-items: center;
}
.mm_page_header__logininfo span,.mm_page_header__logininfo a{
    margin: 2px;

}

.mm_page_header__logininfo--greetings::after {
    content: ',';
}
.mm_page_header__logininfo--username{
    text-transform: uppercase;
    margin-right: 5px !important;
}
.mm_page_header__logininfo--username::after {
    content: '!';
}

.mm_page_footer{
    font-family: 'Balsamiq Sans', cursive;
    font-size: 15px;
    display: flex;
    background: #79aec8;
    color: #f5f1f1;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 2ch 0 2ch;
}
.mm_page_footer > div {
}
.mm_copyright {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.mm_copyright > div {
    margin: 0 0.5ch 0 0.5ch;
}
.mm_copyright--years::after{
    content: ")";
}
.mm_copyright--years::before{
    content: "(";
}
.mm_powered_by a {
    text-decoration: none;
    color: inherit;
    border-bottom: dotted 1px;
    border-color: inherit;
}
.mm_powered_by a:hover {
    opacity: 50%;
}