#titulo  {
  color: #ffffff;
  text-shadow: 0 0 100px #a08908, 0 0 100px #a08908, 0 0 100px #a08908;
  animation: glow 2s ease-in-out infinite alternate;
  font-weight: bold;
  letter-spacing: 10px;
  text-transform: uppercase;
}

.pyramid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	padding: 2rem 0;
}

.level {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.boxer {
	text-align: center;
	max-width: 420px;
	transition: transform 0.3s, box-shadow 0.3s;
}

.boxer:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 20px rgb(255, 255, 255);
}

.boxer img {
	width: 100%;
	border-radius: 12px;
}

.boxer-description {
	margin-top: 0.5rem;
	font-size: 0.9rem;
}


