/**
* Wordfind.js 0.0.1
* (c) 2012 Bill, BunKat LLC.
* Wordfind is freely distributable under the MIT license.
* For all details and documentation:
*     http://github.com/bunkat/wordfind
*/
body{
  background-color: rgb(227, 252, 250);
  margin-top: -10px;
}
h1{
  
  text-align: center;
  margin: 5px 20px;
  font-family: 'Rubik', sans-serif;
  margin-left: -8px;
  height: 55px;
  width: 1599px;
  background-color: rgb(227, 243, 243);
  padding-top: 15px;
}
p {
  font: 22pt sans-serif;
  margin: 20px 20px 0px 20px;
}

/**
* Styles for the puzzle
*/
#juego {
  border: 3px solid rgb(0, 0, 0);
  padding: 15px;
  float: center;
  margin: 30px 550px;
  width:445px;
}

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

/* style for each square in the puzzle */
#juego .puzzleSquare {
  height: 40px;
  width: 40px;
  text-transform: uppercase;
  background-color: white;
  border: 0;
  font: 1em sans-serif;
  
 
}

button::-moz-focus-inner {
  border: 0;
}

/* indicates when a square has been selected */
#juego .selected {
  background-color: rgb(159, 247, 174);
}

/* indicates that the square is part of a word that has been found */ 
#juego .found {
  background-color: rgb(88, 160, 184);
  color: rgb(221, 21, 21);
}

#juego .solved {
  background-color: rgb(58, 64, 66);
  color: white;
}

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

/**
* Styles for the word list
*/
#Palabras {
  padding-top: 30px;
  -moz-column-count: 2;
  -moz-column-gap: 30px;
  -webkit-column-count: 2;
  -webkit-column-gap: 20px;
  column-count: 2;
  column-gap: 20px;
  width: 300px;
}

#Palabras ul {
  list-style-type: none;
  margin-top: auto;
}

#Palabras li {
  padding: 3px 0;
  font: 1em sans-serif;
  margin-left: 630px;
}

/* indicates that the word has been found */
#Palabras .wordFound {
  text-decoration: line-through;
  color: rgb(151, 104, 104);
  margin-left: 630px;
}

/**
* Styles for the button
*/
#solve {
  margin: 20px 30px 0 120px;
  margin-left: 710px;
}