body, html {
    width: 100%;
    height: 100%;
    margin: 0;
}


#swipeArea {
    width: 100%;
    height: 100%;
    background-color: lightblue;
    display: flex;
    align-items: top;                     /* Vertically top the content */
    justify-content: center;              /* Horizontally center the center */
    font-size: 24px;
}


/* FORM */
/*************************************************************************************************/
.float-to-center {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 999;
}



