section#input-section {
	display: inline-flex;
	font-size: 1.25rem;
	gap: 0.75em;
	padding-top: 0.25em;
	padding-bottom: 0.25em;
}

kbd {
	border-radius: 2px;
	padding: 2px;
	font-size: 0.8rem;
	border: 1px solid white;
}

.tooltip {
	position: relative;
}

.tooltip > img {
	height: 1rem;
	width: 1rem;
}

.tooltip .tooltiptext {
	visibility: hidden;
	font-size: 1rem;
	width: 120px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 0.5rem 0.5rem;

	/* Position the tooltip */
	position: absolute;
  margin-left: 0.25rem;
	z-index: 1;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
}

#word-spelling {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}

.element {
	position: relative;
	display: block;
	width: 8em;
	height: 8em;
	border: 1px solid #000;
	flex-shrink: 0;
}

.element>.number {
	position: absolute;
	right: 0.5em;
	top: 0.5em;
	font-size: 1.1em;
}

.element>.symbol {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 3em;
}

.element>.name {
	position: absolute;
	bottom: 0.3em;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.3em;
}

.text-lime-800 {
	color: #166534
}

.text-amber-600 {
	color: #d97706
}