html {
	background-color: #fffce0;
}

.tooltip-text {
	visibility: hidden;
	position: absolute;
	z-index: 1;
	width: 300px;
	color: white;
	font-size: 12px;
	background-color: white;
	border-radius: 10px;
	padding: 10px;
}

.hover-text:hover .tooltip-text {
	visibility: visible;
	width: 300px;
}

#bottom {
	top: 0px;
	left: 100%;
}

.hover-text {
	position: relative;
	display: inline-block;
	text-align: center;
	cursor: pointer;
}

.container-tooltip {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	padding: 0px 30px;
	list-style: decimal;
}

.item-tooltip {
	color: #4b5563;
	font-size: 20px;
}
