/******************************************************************************/
/*    HEADGE : Web Operating System                                           */
/*      style.css : HEADGE main stylesheet                                    */
/******************************************************************************/


/******************************************************************************/
/*  HEADGE Default font                                                       */
/******************************************************************************/
@font-face
{
    font-family: "headgefont";
    src: url("fonts/headgefont.otf");
}

/******************************************************************************/
/*  Global style                                                              */
/******************************************************************************/
*
{
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0px;
    padding: 0px;
}

/******************************************************************************/
/*  Html style                                                                */
/******************************************************************************/
html
{
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/******************************************************************************/
/*  Body style                                                                */
/******************************************************************************/
body
{
    background-color: rgb(0, 0, 0);
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

/******************************************************************************/
/*  Canvas style                                                              */
/******************************************************************************/
canvas
{
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/******************************************************************************/
/*  HTML output style                                                         */
/******************************************************************************/
#headgeoutdiv
{
    display: none;
    width: 100%;
    min-height: 100%;
    display: table-cell;
    vertical-align: middle;
}

/******************************************************************************/
/*  HTML output style                                                         */
/******************************************************************************/
p
{
    display: none;
    color: white;
    text-align: center;
    width: 100%;
    top: 50%;
    margin: 0;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
