.center {
    /* centering */
    display: table-cell;
    vertical-align: middle;
}

body{
    /* centering */
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
}
