@import url("/Assets/CSS/Exercise.css");

#Exercise, #Words {
	font-size: 1.4rem;
}

#Exercise {
	border-collapse: separate;
	border-spacing: 5vh;
	margin: auto;
	width: 65vmax;
	height: 65vmax;
}
	#Exercise td {
		padding: 0;
	}
	#Exercise table {
		position: relative;
		width: 100%;
		height: 100%;
	}
		#Exercise table td {
			display: grid;
			position: absolute;
			align-items: center;
			text-align: center;
			border: thin solid white;
			border-radius: 50%;
			width: 26%;
			height: 26%;
		}
			#Exercise table td:nth-child(1) {
				left: 37%;
				top: 0.5;
			}
			#Exercise table td:nth-child(2) {
				left: 62.8%;
				top: 11.2%;
			}
			#Exercise table td:nth-child(3) {
				left: 73.5%;
				top: 37%;
			}
			#Exercise table td:nth-child(4) {
				left: 62.8%;
				top: 62.8%;
			}
			#Exercise table td:nth-child(5) {
				left: 37%;
				top: 73.5%;
			}
			#Exercise table td:nth-child(6) {
				left: 11.2%;
				top: 62.8%;
			}
			#Exercise table td:nth-child(7) {
				left: 0.5%;
				top: 37%;
			}
			#Exercise table td:nth-child(8) {
				left: 11.2%;
				top: 11.2%;
			}
		#Exercise table.example td {
			background: #BA73B0;
		}

input {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	border: none;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 1.3rem;
	color: white;
}

#Words {
	position: absolute;
	text-align: center;
	top: 150vh;
	left: 45vw;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 0.2rem;
	cursor: move;
	margin: 0;
	padding: 0.5rem;
}
	#Words th {
		padding: 0.2rem 1rem;
	}
	#Words td {
		float: left;
		width: 5rem;
		background: black;
		border-radius: 0.2rem;
		margin: 0.2rem;
		text-align: center;
		vertical-align: middle;
		cursor: pointer;
	}