@import url("/Assets/CSS/Exercise.css");

#Sources img:last-child {
	height: 6vw;
	width: auto;
}

form.labels {
	margin: 1vh auto;
}

table[id^="Exercise"] {
	margin: 0;
	font-size: 1.5rem;
}
	table[id^="Exercise"] td {
		padding: 1rem;
	}
	table[id^="Exercise"] span:not(.god) {
		cursor: pointer;
		transition: all 1s;
	}
		table[id^="Exercise"] span:not(.god):hover {
			color: #666666;
		}

input {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 0.2rem;
	border: none;
	width: 4rem;
	height: 1.8rem;
	font-size: 1.2rem;
	color: white;
	text-align: center;
	vertical-align: middle;
	transition: all 1s;
}

#Words {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 0.2rem;
	font-size: 1.4rem;
	cursor: move;
}
	#Words th {
		font-size: 1.5rem;
	}
	#Words td {
		float: left;
		width: 4rem;
		height: 2rem;
		background: black;
		border-radius: 0.2rem;
		margin: 0.2rem 0.2rem 0.2rem 0.8rem;
		padding: 0.2rem;
		text-align: center;
		vertical-align: middle;
		color: white;
		cursor: pointer;
	}

#Roots {
	margin: auto 2rem;
}
	#Roots tr:not(:first-child):hover {
		background-color: rgba(255, 255, 255, 0.1);
	}
	#Roots th {
		font-size: 1.2rem;
		font-weight: bold;
		text-align: left;
	}
	#Roots th:first-child, #Roots td:first-child {
		text-align: center;
	}