/* http://www.paulirish.com/2012/box-sizing-border-box-ftw/
/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

#alphabet-container-wrapper {
  max-height: 0;
  overflow: hidden; }

#alphabet-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center; }

#alphabet-container div.letter-container {
  margin-bottom: 20px; }

#alphabet-container img {
  width: 68px;
  margin-right: -4px;
  /* 2px due to border, 2 due to image overlap/svg conversion box thing */
  border: 1px solid transparent; }

#alphabet-container div.letter-container:hover img {
  border: 1px solid #ccc; }

#alphabet-container div.label {
  text-align: center;
  color: #ccc; }

#animation-container {
  cursor: help; }

#animation-container.done {
  cursor: default; }

#animation-container img.animation-frame {
  width: 80%;
  margin: 0 10%; }

#paper-label {
  text-align: center;
  margin-bottom: 20px; }

#correct {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px; }

#correct, #author, #game {
  max-height: 0;
  overflow: hidden; }

#correct img {
  height: 50px;
  display: none; }

#guess {
  width: 100%;
  text-transform: uppercase; }

#nabokov {
  display: none;
  text-align: right;
  margin-bottom: 1em; }

body {
  position: relative; }

#about {
  position: absolute;
  top: 0;
  right: 5px; }
  #about a {
    color: #ccc; }

/*# sourceMappingURL=scribble.css.map */
