body 
{ 
	background-color: #000000;
	margin: 0; 
	padding: 0; 
	overflow: hidden; 	
	font-family: Arial, Helvetica, sans-serif;
}

#canvasContainer
{
	position: absolute; 
	left: 0px; 
	top: 0px; 
	height:0;
	width:0;
}

#preloading 
{ 
	position: absolute; 
	left: 0px; 
	top: 0px; 
	width: 100%; 
	height: 100%; 
}

#debug 
{ 
	background-color: #ff0000;
	position: absolute; 
	right: 0px; 
	top: 0px; 	  
	color: #ffffff;
	display: block;
	font-weight: bold;
	font-size: 15px;
}

/* modal */
.modal 
{
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content 
{
  position: relative;
  width: 50%;
  background-color: #fefefe;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  border: 1px solid #fff;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

@-webkit-keyframes animatetop 
{
  from {top:-300px; opacity:0} 
  to {top:50; opacity:1}
}

@keyframes animatetop 
{
  from {top:-300px; opacity:0}
  to {top:50; opacity:1}
}

.modal-close 
{
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal-close:hover,
.modal-close:focus 
{
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header 
{
  padding: 2px 16px;
  background-color: #00bdf8;
  color: white;
}

.modal-body 
{
	padding: 10px 16px;
}

@font-face {
  font-family: "FearRobot-Regular";
  font-style: normal;
  font-weight: normal;
   src: local('FearRobot-Regular'),url('../assets/font/FearRobot-Regular.ttf') format('truetype'); 
}

@font-face {
  font-family: "BrakeDisc";
  font-style: normal;
  font-weight: normal;
  src: url('../assets/font/BrakeDisc-w19e9.otf') format('opentype'); 
}






