body{
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-family: Commissioner;
    font-size: 10px;
}

div, input, button, img{
    box-sizing: border-box;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: top;
    flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
    align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
    justify-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
}

.page_wrapper{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    font-size: 2em;
    overflow: auto;
    display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
    flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    justify-content: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
    z-index: 1;
}

.multi_sided_block{
    display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
    flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
    align-items: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
    justify-content: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
}

.multi_sided_block .side{
    flex-basis: 1;
        -ms-flex-preferred-size: 1;
    flex-grow: 1;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
    flex-shrink: 0;
        -ms-flex-negative: 0;
}