
*{
  /*box-sizing: border-box;*/
}

@font-face {
  font-family: 'pixel';
  src: url('font/pixel.ttf') format('truetype');
}

img{
  image-rendering: pixelated;
}

body {
 position: absolute;
 overflow: hidden;
 padding: 0px;
 margin: 0px;
 width: 100%;
 height: 100%;

 background-color: #000000;
}

#scene {
 user-select: none;
 overflow: hidden;

 background-color: #FFFFFF;
 /*
 box-shadow: 12px 12px 4px rgba(150,150,150,0.75);
 */
}

#scene.fullscreen {
 box-shadow: none;
}

#fullscreen {
 position: absolute;
 right: 23px;
 bottom: 20px;
 width: 1.2em;
 height: 1.2em;

 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: center;

 font-size: 1.5em;

 background-color: #2D0A0A;
 border: 1px solid #000000;
 color: white;
 /*box-shadow: 4px 4px 2px rgba(0,0,0,0.2);*/
 /*border-radius: 0.6em;*/

 cursor: pointer;

 font-family: pixel;
}

