body {
            margin: 0px;
            padding: 0px;
            background: black;
            overflow: hidden;
            cursor: pointer;

            /* https://stackoverflow.com/questions/826782/how-to-disable-text-selection-highlighting*/

            -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */

        }


div#message
{
    font-family: sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    margin: 0px;
    padding: 0px;
    position: relative;
    top: 25%;
    left: 0%;
    color: whitesmoke;
}

#google-analytics
{
    cursor: none;
    position: relative;
}
#google-analytics span::after
{
    content: '\00A9  www.sringeri.net';
    font-family: sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
    position: absolute;
    top: 50%;
    left: 15%;
}