html {
  background-color: #d8d8d8;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-family: sans-serif;
}

body {
  padding-left: 150px;
  margin: 10px;
  position: relative;
}

button {
  min-width: 6em;
}

button, input {
  font-size: 110%;
}

#main {
  position: relative;
  width: 690px;
  margin-left: auto;
  margin-right: auto;
}

#game {
  display: inline-block;
  position: absolute;
  left: 0;
  margin-left: 50px;
}

#elapsed {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

#count {
  display: inline-block;
  position: absolute;
  right: 0;
  margin-right: 50px;
}

#menu {
  position: absolute;
  left: 0;
  top: 0;
  width: 140px;
}

div.modal {
  z-index: 100;
  height: 100%;
  width: 100%;
  min-height: 100%;
  min-width: 100%;
  overflow: hidden;
  background-color: #d8d8d8;
  position: absolute;
  top: 0px;
  left: 0px;
}

.tile {
  position: absolute;
  height: 50px;
  width: 40px;
  background-image: url(original-40x50.png);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  cursor: pointer;
}

.tile.selected {
  outline: 2px solid blue;
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.tile.pending {
  cursor: auto;
  opacity: 0;
  animation: 1s fade-out;
}

@keyframes bounce {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.25);
  }
}
.tile.suggested {
  animation: 0.25s 6 alternate bounce;
}

.tile-1 {
  background-position: 0px 0px;
}

.tile-2 {
  background-position: -40px 0px;
}

.tile-3 {
  background-position: -80px 0px;
}

.tile-4 {
  background-position: -120px 0px;
}

.tile-5 {
  background-position: 0px -50px;
}

.tile-6 {
  background-position: -40px -50px;
}

.tile-7 {
  background-position: -80px -50px;
}

.tile-8 {
  background-position: -120px -50px;
}

.tile-9 {
  background-position: 0px -100px;
}

.tile-10 {
  background-position: -40px -100px;
}

.tile-11 {
  background-position: -80px -100px;
}

.tile-12 {
  background-position: -120px -100px;
}

.tile-13 {
  background-position: 0px -150px;
}

.tile-14 {
  background-position: -40px -150px;
}

.tile-15 {
  background-position: -80px -150px;
}

.tile-16 {
  background-position: -120px -150px;
}

.tile-17 {
  background-position: 0px -200px;
}

.tile-18 {
  background-position: -40px -200px;
}

.tile-19 {
  background-position: -80px -200px;
}

.tile-20 {
  background-position: -120px -200px;
}

.tile-21 {
  background-position: 0px -250px;
}

.tile-22 {
  background-position: -40px -250px;
}

.tile-23 {
  background-position: -80px -250px;
}

.tile-24 {
  background-position: -120px -250px;
}

#container {
  position: relative;
  display: inline-block;
}

/*
 *
 */
div.about {
  background-image: url(logo.png);
  background-repeat: no-repeat;
  padding-top: 80px;
  background-position-x: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 400px;
}

div.about:before {
  content: "";
  display: inline-block;
  width: 100%;
  border-top: 1px solid #b8b8b8;
  border-bottom: 1px solid white;
}

canvas.lines {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  animation: 1s fade-out;
}

ul.menu {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #e8e8e8;
}

ul.menu li.title {
  background-image: url(logo-small.png);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #d8d8d8;
  height: 20px;
}

ul.menu li {
  padding: 2px 8px;
  border-right: 1px solid #b8b8b8;
  border-bottom: 1px solid #b8b8b8;
  border-left: 1px solid white;
  border-top: 1px solid white;
  cursor: pointer;
}

ul.menu li:hover {
  color: blue;
}

table.high-scores {
  width: 100%;
  text-align: left;
}

p.error {
  color: red;
}

div.copy {
  font-size: small;
  text-align: center;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #000000;
}

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