#main {
	margin-left: -50px;
	margin-top: -20px;
}
#puzzleContainer, #wordContainer {
	display: inline-block;
	vertical-align: top;
	margin-left: 50px;
	margin-top: 20px;
}
#wordContainer {
	max-width: 400px;
}
#puzzle {
	table-layout: fixed;
	width: auto;
	background-color: #f0f0f0;
}
#puzzle td {
	position: relative;
	width: 50px;
	height: 50px;
	font-size: 30px;
	vertical-align: middle;
	text-align: center;
}
#puzzle td span {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: block;
}
#puzzle td div.clicked {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #d6fd69;
	height: 50px;
	width: 50px;
	border-radius: 25px;
	z-index: 2;
}
#puzzle td div.selection {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #effad2;
	opacity: 0.5;
	height: 50px;
	width: 212px;
	border-radius: 25px;
	z-index: 1;
	transform-origin: 25px 25px;
	border: 1px dashed #000;
}
#words {
	font-size: 25px;
	column-count: 2;
}
#words .word {
	white-space: nowrap;
}
#words button {
	margin-left: 10px;
	border: none;
	background-color: transparent;
	appearance: none;
}
[v-cloak] {
	display: none;
}
#complete {
	position: absolute;
	height: 100vh;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 5;
	background-color: rgba(255, 255, 255, .5);
	text-align: center;
	font-size: 150px;
}
#complete p {
	font-size: 50px;
}

/* Mobile */
@media (max-width: 680px) {
	#main {
		margin-left: -20px;
		margin-top: -10px;
	}
	#puzzleContainer, #wordContainer {
		margin-left: 20px;
		margin-top: 10px;
	}
	#words {
		font-size: 20px;
	}
	@media (orientation: landscape) {
		#words {
			column-count: 1;
		}
	}
}
