#body,
#html {
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

@import url('https://fonts.googleapis.com/css?family=Muli');

.bottom-action {
	position: absolute;
	bottom: 5px;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, 0%);
	z-index: 10;
}

#like-button,
#ios-download-button,
#android-download-button {
	display:none;
}

#background-noise,
#background-gradient,
#game,
#menu {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
}

#game {
	z-index: 5;

}

#menu {
  z-index: 10;
}
#background-gradient {
    background: red; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#295604, #102501); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#295604, #102501); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#295604, #102501); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#295604, #102501); /* Standard syntax */
}
#background-noise {
	background-image: url("../i/noise-texture.png");
  	background-repeat: repeat-x-y;
}

.myButton {
	-moz-box-shadow:inset 0px 1px 0px 0px #cf866c;
	-webkit-box-shadow:inset 0px 1px 0px 0px #cf866c;
	box-shadow:inset 0px 1px 0px 0px #cf866c;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #d0451b), color-stop(1, #bc3315));
	background:-moz-linear-gradient(top, #d0451b 5%, #bc3315 100%);
	background:-webkit-linear-gradient(top, #d0451b 5%, #bc3315 100%);
	background:-o-linear-gradient(top, #d0451b 5%, #bc3315 100%);
	background:-ms-linear-gradient(top, #d0451b 5%, #bc3315 100%);
	background:linear-gradient(to bottom, #d0451b 5%, #bc3315 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d0451b', endColorstr='#bc3315',GradientType=0);
	background-color:#d0451b;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	border:1px solid #942911;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:12px;
	padding:12px 12px;
	text-decoration:none;
	text-shadow:0px 1px 0px #854629;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none;   /* Chrome/Safari/Opera */
	-khtml-user-select: none;    /* Konqueror */
	-moz-user-select: none;      /* Firefox */
	-ms-user-select: none;       /* Internet Explorer/Edge */
	user-select: none;           /* Non-prefixed version, currently
	                      		not supported by any browser */
}
.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #bc3315), color-stop(1, #d0451b));
	background:-moz-linear-gradient(top, #bc3315 5%, #d0451b 100%);
	background:-webkit-linear-gradient(top, #bc3315 5%, #d0451b 100%);
	background:-o-linear-gradient(top, #bc3315 5%, #d0451b 100%);
	background:-ms-linear-gradient(top, #bc3315 5%, #d0451b 100%);
	background:linear-gradient(to bottom, #bc3315 5%, #d0451b 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bc3315', endColorstr='#d0451b',GradientType=0);
	background-color:#bc3315;
}
.myButton:active {
	position:relative;
	top:1px;
}

#mainContainer {
  position: absolute;
  background: #333333;
  width: 100%;
  min-height: 100%;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 15;
  display:none;
}

#content, #adContainer {
  position: absolute;
  width: 640px;
  height: 360px;
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

#game-canvas{
	overflow: hidden;
}

#contentElement {
  width: 640px;
  height: 360px;
  overflow: hidden;
}

#playButton {
  margin-top:10px;
  vertical-align: top;
  width: 350px;
  height: 60px;
  padding: 0;
  font-size: 22px;
  color: white;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  background: #2c3e50;
  border: 0;
  border-bottom: 2px solid #22303f;
  cursor: pointer;
  -webkit-box-shadow: inset 0 -2px #22303f;
  box-shadow: inset 0 -2px #22303f;
}
