{
  "canvas":
  {
    "element": "canvas",
    "width":   310,
    "height":  310
  },

  "images":
  {
    "board":   "img/board.png",
    "empty":   "img/empty.png",
    "circle":  "img/circle.png",
    "cross":   "img/cross.png"
  },

  "game":
  {
    "welcome":   "Neues Spiel?",
    "end":       "ENDE",

    "startGame": "Spiel starten",
    "stopGame":  "Spiel beenden"
  },

  "model":
  {
    "background":
    {
      "visible_start": true,
      "movable":       false,
      "subtypes":      ["board"],

      "width":     310,
      "height":    310
    },

    "piece":
    {
      "visible_start": true,
      "movable":       false,

      "type":    "piece",
      "subtype": "empty",

      "width":  90,
      "height": 90,

      "border" : { "left": 10, "top": 10 },
      "gap":     10
    },

    "info":
    {
      "x": 155,
      "y": 155
    }
  },

  "view":
  {
    "info":
    {
      "color":        "#ffffcc",
      "font":         "bold 25px Verdana, Geneva, sans-serif",
      "textAlign":    "center",
      "textBaseline": "middle"
    },

    "buttonStartStop":
    {
      "elementID": "button_start_stop"
    }
  }
}