* {
  padding: 0px;
  margin: 0px;
  outline:none;
  /* line-height: 0px; */
}

body, html {
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  background-color: indigo;
  color: #ffffff;
  width: 100vw;
  height: 100vh;
  overflow: hidden;  
  position: fixed;
}

#gamecontainer {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#gamecontainer #eneaGameCanvas{
  margin: 0 auto;
  display: block;
     box-shadow: 0 0 5vmin 1vmin black;
}

#rotatemessage, #errormessage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;	
  display: none;
  background-color: #000000;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}

#rotateimage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;  
}
