#solveBTN {
	display: none !important;
}
#main-content > .container {
	background: linear-gradient(180deg, rgba(60,0,189,1) 0%, rgba(118,191,234,1) 100%);
	width: 100% !important;
	margin: 0;
}
.entry-title {
	display: none;
}
#puzzle-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}
#puzzle-wrapper .modal {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(39, 182, 252, 0.8);
	border: 2px solid #222;
	padding: 1em;
	width: 30em;
	height: 20em;
}
#puzzle-wrapper .modal h3 {
	font-size: 2rem;
	color: #222;
}
#puzzle-wrapper .modal p {
	font-size: 1.5rem;
	color: #222;
}
#puzzle-wrapper .modal .buttons {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: right;
	padding: 1em;
}
#puzzle-wrapper .modal .buttons > * {
	border: 1px solid #c3c3c3;
	padding: .5em .75em;
	color: #222;
	margin: 0 10px;
	border-radius: 10%;
	cursor: pointer;
	background: rgb(97,201,230);
	background: linear-gradient(0deg, rgba(97,201,230,0.8) 0%, rgba(168,234,251,0.8) 100%); 
	font-weight: bold;
	font-size: 100%;
}
#puzzle-container {
    border: 1px solid black;
    padding: 20px;
    margin: 0px 20px;
	background: #ffe1c6;
	position: relative;
}

#puzzle-container > div:not(.abs) {
    width: 100%;
    margin: 0 auto;
	background: transparent;
	position: relative;
	z-index: 10;
}
#puzzle-container .abs {
	position: absolute;
	border-radius: 100vw;
	border: 2px solid #222;
	transform-origin: left;
	pointer-events: none;
	
}
.abs.horiz, .abs.diag {
	height: 50px;
}
.abs.vert {
	width: 50px;
}
.abs.diag.down-left {
	transform: rotate(135deg);
}
.abs.diag.up-left{
	transform: rotate(225deg);
}
.abs.diag.down-right {
	transform: rotate(45deg);
}
.abs.diag.up-right {
	transform: rotate(-45deg);
}
/* style for each square in the puzzle */

#puzzle-container .puzzleSquare {
    height: 60px;
    width: 60px;
    text-transform: uppercase;
    border: 1px solid #c3c3c3;
    font: 3em sans-serif;
	padding: 0;
	background: transparent;
}

.puzzleSquare span {
	background: transparent;
	position: relative;
	z-index: 12;
}

#puzzle-container button::-moz-focus-inner {
    border: 0;
}
/* indicates when a square has been selected */
#puzzle-container button {
	position: relative;
}
#puzzle-container .selected {
    background-color: orange;
}
/* indicates that the square is part of a word that has been found */

#puzzle-container .found {
    color: white;
}

#puzzle-container .solved {
    background-color: purple;
    color: white;
}
/* indicates that all words have been found */

#puzzle-container .complete {
    background-color: #e0e0e0;
}
/**
* Styles for the word list
*/

#puzzle-words {
    width: 300px;
	border: 1px solid #222;
	padding: 20px;
	background-color: #fff;
	margin-left: 20px;
}

#puzzle-words ul {
    list-style-type: none;
	vertical-align: top;
}

#puzzle-words li {
    padding: 3px 0;
    font: 2em sans-serif;
	margin: 10px auto;
}
/* indicates that the word has been found */

#puzzle-words .wordFound {
    text-decoration: line-through;
}
/**
* Styles for the button
*/

#solve {
    margin: 0 30px;
}
@media only screen and (max-width: 1200px){
	#puzzle-words {
		width: 200px;
	}
	#puzzle-words li {
		font: 1.5em sans-serif;
	}
	#puzzle-container .puzzleSquare {
		width: 50px;
		height: 50px;
		font: 2.5em sans-serif;
	}
	.abs.horiz, .abs.diag {
		height: 40px;
	}
	.abs.vert {
		width: 40px;
	}
}
@media only screen and (max-width: 950px){
	#puzzle-wrapper {
		display: inline-block;
		text-align: center;
	}
	#puzzle-words {
		width: 100%;
		margin-left: 0;
		display: block;
	}
	#puzzle-container {
		text-align: center;
		width: auto;
		margin: 20px auto 0;
		display: inline-block;
	}
	#puzzle-words li {
		display: inline-block;
		margin: 10px;
	}
}
@media only screen and (max-width: 665px){
	#puzzle-container {
		min-width: 482px;
	}
	#puzzle-container .puzzleSquare {
		width: 40px;
		height: 40px;
		font: 2em sans-serif;
	}
	.abs.horiz, .abs.diag {
		height: 30px;
	}
	.abs.vert {
		width: 30px;
	}
}