@charset "UTF-8";

#alphabet {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.alphabet-letter {
	font-size: 2rem;
	cursor: pointer;
}

.alphabet-letter:hover {
	color: #F37032;
}


.active-alph {
	color: #F37032;
}