/*
CSS for "Martha's Steaks" 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:#9ed45c;
}

img{
  border:none;
}

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

#html5game{
  position: absolute;

  top: 0; left: 0; right: 0; bottom: 0;
  margin: auto;
  /*width:100%;*/

  z-index:5;
}


#coverImg{
  visibility: hidden;
  position: absolute;

  top: 0; left: 0; right: 0; bottom: 0;
  margin: auto;
  /*
  width:100%;
  height:auto;
  */
  z-index:3;
}


/*mobile page nav bar*/
#mobile-header{


}

#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%;
}


/* full screen CSS for different browsers*/

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

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

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

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

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


#startBtn{
  visibility: hidden;
  position: absolute;

  left:75%;
  top:64%; /* assuming portrait orientation. adjusted via js on orientation change */

  z-index: 6;
  cursor: pointer;
}

#startBtn:hover {
  cursor: pointer;
}