/* 
 *  Rajarshi Das
 *
 *  Created: 14-09-2019
 *  Updated:
 *  Version: 1.0 beta
 */
html,
body {
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Monospace;
    font-size: 13px;
}

#fps {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #999;
    cursor: default;
}

#renderCanvas {
    width: 100%;
    height: 100%;
    touch-action: none;
}

#info {
    position: absolute;
    top: 0px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1;
}

.rdCenterAlign {
    width: 100%;
    text-align: center;
    
}

.guiPanel {
    position: absolute;
    top: 100px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 2;
    visibility: hidden;
    color: white;

}

#guiBackground {
    position: absolute;
    top: 100px;
    width: 100%;
    height: 100px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1; 
    visibility: hidden;
    background-color: black;
    opacity: 0.5;
}
