input, #Words, #Octogons {
	font-size: 1.2rem;
}

#Words {
	position: absolute;
	text-align: center;
	top: 105vw;
	left: 45vw;
	margin: 0;
	padding: 10px;
	color: #000;
	background: #FFF;
	border: thin solid black;
}
	#Words th {
		padding: 0.2rem 1rem;
		background: #A6529A;
		font-size: 1.5rem;
		font-weight: bold;
		color: #FFF;
		cursor: move;
	}
	#Words td {
		padding: 0.5vh 0.5vw;
		font-size: 1.5rem;
		cursor: pointer;
	}

input {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	border: none;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 1rem;
	color: #FFF;
}

#Octogons {
	margin: auto;
	width: 80vmax;
	height: 80vmax;
}
	#Octogons td {
		padding: 0;
		margin: 2vh;
	}
	#Octogons table {
		position: relative;
		padding: 10%;
		margin: 10%;
		width: 100%;
		height: 100%;
	}
		#Octogons table td {
			display: grid;
			position: absolute;
			align-items: center;
			font-size: 1.5rem;
			text-align: center;
			border: thin solid #FFF;
			border-radius: 50%;
			width: 25%;
			height: 25%;
		}
			#Octogons table td:nth-child(1) {
				left: 37.5%;
				top: 0;
			}
			#Octogons table td:nth-child(2) {
				left: 63.75%;
				top: 10.75%;
			}
			#Octogons table td:nth-child(3) {
				right: 0;
				top: 37.5%;
			}
			#Octogons table td:nth-child(4) {
				left: 63.75%;
				top: 63.75%;
			}
			#Octogons table td:nth-child(5) {
				left: 37.5%;
				bottom: 0;
			}
			#Octogons table td:nth-child(6) {
				left: 10.75%;
				top: 63.75%;
			}
			#Octogons table td:nth-child(7) {
				left: 0;
				top: 37.5%;
			}
			#Octogons table td:nth-child(8) {
				left: 10.75%;
				top: 10.75%;
			}
		#Octogons table.example td {
			background: #A6529A;
		}