/*
CSS for "Socks in Space" HTML 5 Game (MOBILE)
*/

/*createJS font embedding*/
@font-face {
  font-family: 'Nunito';
  src: url('../font/Nunito-Regular.ttf') format('truetype');
}

/* optional test class, not needed for easelJS, but for regular html content*/

.Nunito {
  font-family: 'Nunito', Arial, serif; font-weight: 400;
}

body{
  background-color: #a0d256;
}

#canvasContainer{
  position: absolute;
  margin-top:7%;
  top: 0; left: 0; right: 0; bottom: 0;
}

#pbs {
  float: left;
  max-width: 49px;
  width:7%;

}
#logo {
  max-width: 300px; width:40%;
  position:absolute;
  left: 0; right: 0;
  margin: auto;
  margin-top:1%;
}

#canvasContainer canvas{
  margin: auto;
  margin-top: 2em;
  margin-bottom: 1em;
  position: absolute;
  top: 1em;
  bottom: 1px;
  left: 0px;
  right: 0px;
  
  width: 90%;

  /*max-width: 800px;*/
  z-index: 5;
}

/* CHROME, SAFARI */
#canvasContainer canvas:-webkit-full-screen {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  margin: auto;
  width:100%;
  max-height:100%;
}

/*FIREFOX*/
#canvasContainer canvas:-moz-full-screen  {
	position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  margin: auto;
  width:100%;
  max-height:100%;
}

/*IE*/
#canvasContainer canvas:-ms-fullscreen {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  margin: auto;
  width:100%;
  max-height:100%;
}

#canvasContainer canvas:full-screen { /*pre-spec */
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  margin: auto;
  width:100%;
  max-height:100%;
}

#canvasContainer canvas:fullscreen { /* spec */
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  margin: auto;
  width:100%;
  max-height:100%;
}
