body {
  background: #000;
  color: #fff;
  font-family: 'Press Start 2P';
}

h1 {
  font-size: 1.6em;
}

a {
  color: #ccc;
}
ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

#wrapper {
  margin: 20px auto;
  width: 400px;
}

#viewport {
  height: 320px;
  width: 320px;
  position: relative;
}

#dialogs, #game, #gameover, #gameend {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#dialogs {
  opacity: 0.8;
  z-index: 2;
}
#game {
  z-index: 1;
}

#dialogs section.visible {
  display: block;
}

#dialogs section {
  display: none;
  border: 2px solid #fff;
  background: #000;
  color: #fff;
  padding: 5px 2px;
  clear: both;
  line-height: 1em;
  overflow: auto;
  margin-bottom: 5px;
}
#dialogs figure {
  float: left;
  width: 125px;
  margin: 0;
  padding: 0;
  margin-right: 10px;
  position: relative;
}
#dialogs figure img {
  width: 100%;
}
#dialogs figcaption {
  font-weight: bold;
  font-size: 0.9em;
  background: black;
  padding: 5px 0 0 5px;
  position: absolute;
  bottom: 0;
  right: 0;
}
#dialogs .message {
  font-size: 0.6em;
}
#dialogs .message li {
  opacity: 0.2;
}
#dialogs .message li.visible {
  opacity: 1.0;
}

#dialogs .help {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  font-size: 0.6em;
  color: #fff;
}

#gameover {
  padding: 50px 0;
  text-align: center;
}
