/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
html, #app {
  width:100%;
  height:100%;
}
body {
  width:100%;
  height:100%;
  background-color: white;
  color: black;
  font-family: monospace;
}
* { box-sizing:border-box; }

#app {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.gosling {
  background-repeat: repeat;
  background-size: 20%;
  background-position: center;
  background-image: url(./gosling.gif);
  width: 100%;
  height: 100%;
}