/**
* Wordfind.js 0.0.1
* (c) 2012 Bill, BunKat LLC.
* Wordfind is freely distributable under the MIT license.
* For all details and documentation:
*     https://github.com/bunkat/wordfind
*/
html, body {
  overflow:hidden;
}

body {
  background: #2d2d2d;
}

.puzzleWrap {
  width: 100%;
  margin: 20px auto 0;
}

p {
  font: 20pt 'Montserrat',sans-serif;
  font-weight: bold;
  margin: 20px 20px 0px 20px;
  color: #fff;
}

/**
* Styles for the puzzle
*/
#puzzle {
  padding: 0px;
  position: absolute;
  width: 1000px;
  height: 600px;
  top: 50%;
  left: 50%;
  margin-top:-300px;
  margin-left: -500px;
}

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

/* style for each square in the puzzle */
#puzzle .puzzleSquare {
  height: 35px;
  width: 35px;
  text-transform: uppercase;
  background-color: #2d2d2d;
  border: 0;
  outline: none;
  font: 1.1em 'Montserrat', sans-serif;
  padding: 0;
  color: #fff;
}

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

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

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

#puzzle .solved {
  color: #c7ff3f;
}

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

/**
* Styles for the word list
*/
#words {
  width: 250px;
  color: #6891ad;
  float: left;
  margin-top: 37px;
}

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

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

/* 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: transparent;
  color: #ee5426;
  padding: 10px 20px;
  border: 2px solid #ee5426;
  border-radius: 25px;
  opacity: 0.5;
  transition: opacity 0.25s ease-in;
}
#solve:hover, #solve.gameSolved {
  opacity: 1;
}