body {
    margin: 0px;
    background-color: rgb(244, 244, 244);
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    /*Prevent selecting text*/
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /*Stop default scroll even when content fits page*/
    overflow: hidden;
    /* Prevent default touch behaviors*/
    touch-action: none;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-color:#f0deb1;
}

.full-page-container {
    position: fixed;
    display: flex;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.full-page {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}