@-webkit-keyframes color_change_to_clicked {
  from {
    background-color: #fffdcc;
  }
  to {
    background-color: #5c8b4f;
  }
}

@keyframes color_change_to_clicked {
  from {
    background-color: #fffdcc;
  }
  to {
    background-color: #5c8b4f;
  }
}

@-webkit-keyframes color_change_to_unclicked {
  from {
    background-color: #5c8b4f;
  }
  to {
    background-color: #fffdcc;
  }
}

@keyframes color_change_to_unclicked {
  from {
    background-color: #5c8b4f;
  }
  to {
    background-color: #fffdcc;
  }
}

body {
  padding: 0 0 60px;
  margin: 0;
  font-family: sans-serif;
  font-weight: normal;
  line-height: 1.5;
  font-size: 0.76;
  color: #eee;
  background-color: #383535;
}

body > * {
  margin: auto;
}

body a {
  color: white;
  text-decoration: underline;
}

body a.anchor {
  display: block;
  position: relative;
  top: -59px;
  visibility: hidden;
}

#logowrapper {
  height: 59px;
  width: 100%;
  position: fixed;
  top: 3px;
  text-align: center;
  background-color: rgba(56, 53, 53, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#logowrapper img#logo {
  margin-top: 5px;
  width: 220px;
}

#wrapper {
  font-family: 'Roboto', sans-serif;
  width: 295px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#wrapper #header {
  margin-top: 59px;
  padding: 14px 0 10px;
  text-align: center;
}

#wrapper #header #top_message_field {
  margin: auto;
  width: 295px;
  font-size: 20px;
  padding: 0;
}

#wrapper #header #top_message_field .win_counter {
  font-weight: bold;
  background-repeat: no-repeat;
  background-size: 18px;
  background-position-y: 4px;
  padding: 2px 0;
}

#wrapper #playarea #grid {
  background-color: #ccc;
  overflow: auto;
  padding: 5px;
}

#wrapper #playarea #grid[data-success='yes'] {
  background-color: #7bb16c;
}

#wrapper #playarea #grid[data-reset='yes'] {
  background-color: #a02c0f;
}

#wrapper #playarea #grid > div {
  display: block;
  float: left;
  width: 85px;
  height: 85px;
  margin: 5px;
}

#wrapper #playarea #grid > div[data-clicked='no'] {
  background-color: #fffdcc;
}

#wrapper #playarea #grid > div[data-clicked='yes'] {
  background-color: #5c8b4f;
}

#wrapper #quotearea {
  margin: 40px auto 40px;
  background: url(quotes.png);
  background-repeat: no-repeat;
  background-position: 10px left;
  width: 100%;
  cursor: pointer;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

#wrapper #quotearea > .quotewrapper {
  margin-left: 105px;
}

#wrapper #quotearea > .quotewrapper > .quote_and_source {
  min-height: 80px;
}

#wrapper #quotearea > .quotewrapper > .quote_and_source > .quote {
  padding-bottom: 3px;
}

#wrapper #quotearea > .quotewrapper > .quote_and_source > .source {
  font-style: italic;
  text-align: right;
}

#wrapper #quotearea > .quotewrapper > .linkinfo {
  font-size: 14px;
  margin-left: -100px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.4);
}

#wrapper .backlink {
  text-align: right;
}
/*# sourceMappingURL=style.css.map */