@charset "utf-8";
/* CSS Document */


#cent_box 
{
    height: 100vh;
    margin: 0;
    position: relative;
}

.box 
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
       -ms-flex-align: center;
          align-items: center;
    -webkit-box-pack: center;
       -ms-flex-pack: center;
     justify-content: center;
}

.box-content 
{    
    padding: 20px;
}