html, body { 
margin: 0px; padding: 0px; height: 100%; 
} 

body {
background-color:#005D41!important;
}

#background{
	
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;

background-image: url("../assets/bg.jpg");
background-repeat: no-repeat;
background-position: center center;
background-size: auto 100%;

transition: opacity 0.5s;

opacity:0;

}

#game{

position: relative;
	
}

@font-face {
    font-family: 'thesansextrabold';
    src: url('TheSans-ExtraBold.woff2') format('woff2'),
        url('TheSans-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'thesansbold';
    src: url('TheSans-Bold.woff2') format('woff2'),
        url('TheSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'thesans';
    src: url('TheSans-Plain.woff2') format('woff2'),
        url('TheSans-Plain.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



#font1{
	font-family: 'thesansextrabold';
	position:absolute;
	left:-1000px;
	visibility:hidden;

}

#font2{
	font-family: 'thesansbold';
	position:absolute;
	left:-1000px;
	visibility:hidden;
}

#font3{
	font-family: 'thesans';
	position:absolute;
	left:-1000px;
	visibility:hidden;
}
	
	
	

#img_turn{
	
	display:none;
	position:fixed;
	top:50%;
	left:50%;
	margin-top:-100px;
	margin-left:-100px;
	width:200px;
	height:200px;
	
}
	
}

.noselect {
  -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 */
}