
/* This code is called if javascript is not enabled in the API and gives the appropriate message to user */

body:before{
    content: 'Puzzles on this site are coded using JavaScript. To play, please enable JavaScript in the browser Settings. Then refresh the page.';
    position: absolute;
    color: white;
    font-family: sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;

    width: 100%;
    padding: 1em 0;

    background: rgba(0,0,0,0.9);

    position: fixed;
    top: 15vh;
    left: 0;
    z-index: 99999;
}