body {
    background: #000900;
    /* Prevent the ugly blue highlighting from accidental selection of text */
    user-select: none;
}

/* fonts */

/* Make members of class unselectable/undraggable */
.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

#wrapper {
    position: absolute;
}

#gamecontainer {

    /* Set game container width, height and background */
    width: 1920px;
    height: 1080px;
    background: url("images/home__background_rules.jpg");
}


.gamelayer {
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
}

/* Game Starting Menu Screen */

#gamestartscreen {
    text-align: center;
}

#gamestartscreen img {
    margin: 0px;
    cursor: pointer;
}

#steps {
    margin-left: auto;
    margin-right: auto;
    width: 550px;
}

/* text for the entry screen */

.text {
    margin-top: 350px;
    border-radius: 100px;
    padding: 170px 500px 50px 50px;    
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 24px;
    color: white;
}

/* Level Selection Screen */

#levelselectscreen {
    padding-top: 150px;
    padding-left: 50px;
}

#levelselectscreen input {
    margin: 20px;
    cursor: pointer;

    background: url("images/icons/level.png") no-repeat;
    color: yellow;
    font-size: 20px;

    width: 64px;
    height: 64px;

    border: 0;

    /* Remove the default blue border when an input is selected */
    outline: 0;
}

/* Loading Screen */

#loadingscreen {
    background: rgba(100, 100, 100, 0.5);
}

#loadingmessage {
    margin-top: 400px;
    text-align: center;
    height: 48px;
    color: white;
    background: url("images/loader.gif") no-repeat center;
    font: 12px Arial;
}

/* Score Screen */

#scorescreen {
    height: 60px;
    font: 32px "Comic Sans MS";
    color: white;
}

#scorescreen img {
    opacity: 1;
    top: 5%;
    left: 0%;
    position: relative;
    padding: 8px;
    cursor: pointer;
}

#score {
    position: absolute;
    top: 1%;
    right: 1%;
    /*change here for background of score box*/
    border-radius: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    width: 240px;
    height: 72px;
    line-height: 72px;
    text-align: left;
    padding-left: 20px;
    background-color: white;
    margin-top: 10px;
    margin-left: 1710px;
    font-size: 24px;
    color: black;
}

#back {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	position: absolute;
	bottom: 0px;
	left: 0px;
}