@import url(https://fonts.googleapis.com/css?family=Cinzel:400,700);

html, body
{
  background-color: #000;
  font-family: "Cinzel", serif;
}

.hidden
{
  display: none !important;
}

#game
{
  position: relative;
  width: 96vh;
  height: 72vh;
  margin: 3em auto 2em auto;
  overflow: hidden;
}
  #game .scene,
  #game .scene .map
  {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  #game .scene
  {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #game .scene.current
  {
    z-index: 99;
  }
  #game .scene.new
  {
    z-index: 10;
  }
    #game .scene .map .spot
    {
      position: absolute;
/*      outline: solid 2px #fff;*/
    }

.debug
{
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  font-family: monospace;
  margin: 0;
  padding: 0;
  display: none;
}

footer
{
  color: #fff;
  text-align: center;
  line-height: 160%;
  font-size: 80%;
}
  footer p
  {
    margin: 0;
    color: #bbb;
    letter-spacing: 1px;
  }
    footer p strong,
    footer p a
    {
      color: #fff;
    }

#end
{
  text-align: center;
  color: #bbb;
  font-size: 150%;
  letter-spacing: 1px;
}
  #end h1
  {
    font-size: 200%;
    text-transform: uppercase;
    color: #fff;
  }
  #end a
  {
    color: #fff;
  }

@media (orientation: portrait) {  
  #game
  {
    width: 100%;
    height: 75vw;
    margin-top: 0;
  }
  
  #end
  {
    font-size: 90%;
  }
}

#loading
{
  display: block;
  opacity: 1;
  color: #fff;
  text-align: center;
  font-size: 100%;
  letter-spacing: 1px;
  padding-top: 50px;
}
  #loading #progress
  {
    height: 10px;
    background-color: #333;
    position: relative;
    width: 80%;
    margin: 0 auto 0 auto;
  }
    #loading #progress #indicator
    {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      height: auto;
      background-color: #fff;
    }