* {

	text-align: center;
	font-family:  "Moon", Arial, sans serif;
	font-weight: normal;

}
html{
	overflow-x: none;
}

h1, h2, #wordTheme, #solveButton, #newGameButton, .listWord {

	padding: 5px;

}

h1, h2, #wordTheme, #solveButton, #newGameButton {

	/* border: 2px black solid; */
	border-radius: 8px;

} 

/* h1, h2, .cell, #wordTheme, #wordlist {

	background-color: white;

} */

h1, h2 {

	margin: 10px auto 10px auto;
	display: table;

}

body {

	background-color: #EAF7FB;

}

#wordTheme {

	border-radius: 8px;

}

#wordboard {

	margin: 20px auto 0 auto;
	/* border: 2px black solid; */
	display: table;
   background-color: white;
    padding: 30px;
    border-radius: 50px;

}

.boardRow {

	display: table-row;

}

.cell {

	margin: 0 auto;
	border: none;
	display: table-cell;
	height:30px;
	width: 30px;
	font-size: 17px;
	padding: 0;
	outline: 0;

	/*ensures text can't be accidentally selected*/
	cursor: default; 
	-moz-user-select: none;
    -ms-user-select: none; 
    -khtml-user-select: none; 
    -webkit-user-select: none; 
    -webkit-touch-callout: none; 
	background-color: transparent;

}

.cell:hover {

	background-color:#FF7100;

}

.cell.selectable {

	background-color: #FF7100;

}

.cell.selected { 

	background-color: #c70b6f;

}

.cell.found {
	background-color: rgb(140, 208, 0);
	/* border: 1px black solid; */
	font-weight: bold;

}

#wordlist { 

	margin: 40px auto 0 auto;
	/* border: 2px black solid; */
	display: table;
	min-width: 600px;
	font-size: 17px;
	text-align: center;
	
}

.listRow {

	display: table-row;

}

.listWord {

	display: inline-block;
	background-color: rgb(28 28 30);
	margin-right: 10px;
	margin-bottom: 10px;
	padding: 5px 10px;
	border-radius: 10px;
}

.listWord.found {

	background-color:rgb(140 208 0);
	color:white;
	text-decoration: line-through;
	box-shadow: 2px 2px 3px gray;
	
}

#solveButton, #newGameButton {

	background-color: rgb(199, 226, 201);
	margin: 20px auto 20px auto;
	display: block;
	outline: 0;
	border-radius: 8px;
	font-size: 18px;
	font-weight: bold;

}

