.puzzleWrap {
  width: 850px;
  margin: 50px auto 0;
}

/**
* Styles for the puzzle
*/
#puzzle {
  padding: 20px;
  float: center;
  margin: 30px 20px;
  width: 550px;
}

#puzzle div {
  width: 100%;
  margin: 0 auto;
}

/* style for each square in the puzzle */

#puzzle .puzzleSquare {
  height: 40px;
  width: 40px;
  text-transform: uppercase;
  background-color: #306a8b;
  border: 0;
  outline: none;
  font: 2em sans-serif;
  color:   #ffffff;
}

button::-moz-focus-inner {
  border: none;
  outline: none;
}

/* indicates when a square has been selected */
#puzzle .selected {
  color: #ee5426;
  outline: none;
  
  &:focus {
    border: none;
  }
}

/* indicates that the square is part of a word that has been found */ 
#puzzle .found {
  color: #ee5426;
}

#puzzle .solved {
  color: #ee5426;
}

/* indicates that all words have been found */
#puzzle .complete {
  background-color: green;
}


/**
* Styles for the word list
*/
#words {
  // padding-top: 20px;
  // -moz-column-count: 2;
  // -moz-column-gap: 20px;
  // -webkit-column-count: 2;
  // -webkit-column-gap: 20px;
  // column-count: 2;
  // column-gap: 20px;
  width: 250px;
  color: $ltblue;
  float: center;
  margin-top: 37px;
}

#words ul {
  list-style-type: none;
}

#words li {
  padding:  0 0 7px;
  font: 2em sans-serif;
  display: inline-block;
  float: left;
  width: 200px;
}


/* indicates that the word has been found */
#words .wordFound {
  text-decoration: line-through;
  color: #ee5426;
}


/**
* Styles for the button
*/
#solve {
  margin: 30px 30px 0 40px;
  background: green;
  color: #FF0000;
  padding: 10px 20px;
  border: 2px solid $red;
  border-radius: 25px;
  opacity: .5;
  transition: opacity .25s ease-in;
  &:hover, &.gameSolved {
    opacity: 1;
  }