/*@font-face {
    font-family: 'font_family_name';
    src: url('../fonts/font_url.eot');
    src: url('../fonts/font_url.eot?#iefix') format('embedded-opentype'), url('../fonts/font_url.woff2') format('woff2'), url('../fonts/font_url.woff') format('woff'), url('../fonts/font_url.ttf') format('truetype'), url('../fonts/font_url.svg#font_family_name') format('svg');
    font-weight: normal;
    font-style: normal;
}*/
@font-face {
  font-family: 'carton_sixregular';
  src: url('../fonts/carton_six-webfont.eot');
  src: url('../fonts/carton_six-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/carton_six-webfont.woff2') format('woff2'), url('../fonts/carton_six-webfont.woff') format('woff'), url('../fonts/carton_six-webfont.ttf') format('truetype'), url('../fonts/carton_six-webfont.svg#carton_sixregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
}
html,
body {
  background-color: #FFF;
  width: 100%;
  height: 100%;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}
#game-container {
  position: relative;
  max-width: 1024px;
  max-height: 768px;
  height: 100%;
  width: auto;
  margin: 0 auto;
}
#game-container canvas {
  position: relative;
  max-height: 100%;
  max-width: 1024px;
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
#game-container.preload {
  background: url(../img/splash_screen.jpg) no-repeat;
  background-position: center top;
  background-size: contain;
}
#game-container #controls {
  position: absolute;
  left: 5px;
  bottom: -30px;
}
@media (-webkit-min-device-pixel-ratio: 2) {
  #game-container.preload {
    background: url(../img/splash_screen@2x.jpg) no-repeat;
    background-position: center top;
    background-size: contain;
  }
}
