*{
  overflow-x: none !important;
  overflow-y: none !important;
  
  justify-content: center;
  align-items: center;
  text-align: center;
  

}
 
#gamed{
  width: 100%;
  height: 100%;
  background: red;
  z-index: 9999999;
  display: block !important;
  overflow: none !important;
}

canvas{
  z-index: 0 !important;
  overflow: none !important;
}

#full{
  position: absolute;
    z-index: 9999;
      margin-left: 0px !important;
  left: 0px;
  top: 0px;
  height: 100px;
  display: none;
  overflow: none !important;
}
#exit{
  position: absolute;
  z-index: 9999;
  margin-left: 0px !important;
  left: 0px;
  top: 100px;
  height: 100px;
  display: none;
  overflow: none !important;
}

body {
  margin: 0;
  padding: 0;  
  height: 100vh;
  width: 100%;

  display: flex;           /* establish flex container */
  flex-direction: column;  /* make main axis vertical */
  justify-content: center; /* center items vertically, in this case */
  align-items: center;     /* center items horizontally, in this case */
  background: var( --gray-0 );

  overflow: none !important;
}

#game{

  display: none;
  overflow: none !important;
}

.desktop{
  width: 800px;
  height: 450px;  
 
  border: 0px solid var( --gray-1 );
  border-radius: 2px;
  overflow: none !important;
}

.mobile{
  width: 640px;
  height: 360px;  
 
  border: 0px solid var( --gray-1 );
  border-radius: 2px;
  overflow: none !important;
}

.disable-select {
  -webkit-user-select: none;  
  -moz-user-select: none;    
  -ms-user-select: none;      
  user-select: none;
}

.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}


@font-face {
  font-family: 'Ubuntu';
  src: url('fonts/UbuntuMono-Regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/UbuntuMono-Regular.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('fonts/UbuntuMono-Regular.svg#svgFontName') format('svg'); /* Legacy iOS */ 
  font-display: fallback;
}

:root{
  
  --violet-0: #0E1215;
  --violet-1: #151925;
  --violet-2: #242844;
  
  --gray-0: #0c1017;
  --gray-1: #171f2f;  
  --gray-2: #6680FF;

  --black: #090A10;
  --white: #FFFFFF;  
  
  --green: #BDCD36;
}


#loading{
 
  z-index: 9999;
  position: absolute;
  
  display: none;
 
  
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  
  overflow: none !important;
}


/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.boxLanguages {
  position: absolute;
  z-index: 1000;
  color: blue;
  /*background: rgba(0, 0, 0, 0.2);*/
  padding: 30px;
  display: none;
  margin-top: -126px;
}

#select{
  font: 'Arial Black';
  font-size: 28px;
  font-weight: "bold";
  border: white 2px solid;
  border-radius: 5px;
 /* stroke-thickness = 6; */
  color: black;
  background: var( --green );
  outline: none;
  padding-left: 5px;
}
.option{
   color: 'red !important';
}

