/* Scss Document */
body {
  background: #ccc;
  color: #fff;
  font-family: 'Courier New', sans-selif;
  font-size: 16px;
  font-weight: 700; }

#container {
  margin: 16px auto; }

#board {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 8px;
  padding: 10px;
  background: #fff;
  border-radius: 4px; }
  #board li {
    background: #00aaff;
    width: 40px;
    height: 40px;
    margin: 5px;
    cursor: pointer;
    border-radius: 4px;
    line-height: 40px;
    text-align: center;
    box-shadow: 0 4px 0 #0088cc; }
    #board li.pressed {
      background: #ccc;
      box-shadow: none;
      margin-top: 9px;
      margin-bottom: 1px; }

#timer {
  margin: 8px;
  font-size: 20px;
  text-align: right; }

#btn {
  cursor: pointer;
  user-select: none;
  background: #f44336;
  padding: 8px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 4px 0 #d1483e; }
  #btn:active {
    margin-top: 12px;
    box-shadow: none; }
