html,body {
  max-width: 500px;
  max-height: 500px;
  /*margin: auto  auto;*/
  /*position: relative;*/
  background-color: white;
}

#puzzle-container {
    /*border: 5px solid black;*/
    padding: 10px;
    float: left;
    margin: 30px 20px;
    background-color: white;



    /*position: absolute;
    top: 50%;
    left: 50%;
    height: 30%;
    width: 50%;
    margin: -15% 0 0 -25%;*/
}

#puzzle-container div {
    width: 100%;
    margin: 0 auto;
    /*background-color: #aaa;*/
}
/* style for each square in the puzzle */
#puzzle-container .puzzleSquare {
    height: 30px;
    width: 30px;
    text-transform: uppercase;
    /*background-color: #aaa;*/
    border: 0;
    font: 1em sans-serif;

}

#puzzle-container button::-moz-focus-inner {
    border: 0;
    background-color: white;
}
/* indicates when a square has been selected */

#puzzle-container .selected {
    background-color: #aaa;
}
/* indicates that the square is part of a word that has been found */

#puzzle-container .found {
    background-color: #aaa;
    color: white;
}

#puzzle-container .solved {
    background-color: #aaa;
    color: white;
}
/* indicates that all words have been found */

#puzzle-container .complete {
    background-color: #aaa;
}
/**
* Styles for the word list
*/

#puzzle-words {
    padding: 10px;
    /*-moz-column-count: 2;
    -moz-column-gap: 20px;
    -webkit-column-count: 2;
    -webkit-column-gap: 20px;*/
    /*column-count: 2;
    column-gap: 5px;
    width: 200px;*/
    vertical-align: middle;

    /*border: 2px solid grey;*/
    float: left;
    margin: 30px 0px;
    /*background-color: #aaa*/
}

#puzzle-words ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#puzzle-words li {
    padding: 3px 0;
    font: 1em sans-serif;
}
/* indicates that the word has been found */

#puzzle-words .wordFound {
    text-decoration: line-through;
    color: gray;
}

#bottom_text {
  font: 1em sans-serif;
  /*width: 60%;*/
  /*border: 2px solid black;*/
  padding:10px;
  font-size: 11pt;
  color: #666;
  position: absolute;
  bottom:0;
  /*height: 200px;*/

}
/**
* Styles for the button
*/

#solve {
    margin: 30 30px;
}

#solveBTN {
  /*border: 2px solid black;*/
  float: left;
  margin: 30px 8px;
  border:0;
  /*background-color: #aaa*/

}

#newBTN {
  /*border: 2px solid black;*/
  float: left;
  margin: 30px 8px;
  border:0;
  /*background-color: #aaa*/

}
