.enemy {
	width: auto;
	display: flex;
	margin: 5px 40px;
	border: 2px solid grey;
	border-radius: 6px;
}

.enemyCanvas {
	height: fit-content;
	margin: 10px;
}

.enemyContent {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.enemyName {
	display: flex;
	flex-direction: row;
}

.enemyNewIndicator {
	margin-left: 30px;
}

.enemyBreak {
	background-color: grey;
	margin: 5px 5px;
}

.enemyExpandButton {
	width: fit-content;
}

.enemyDescriptionBreak {
	background-color: grey;
	width: 100%;
}

.enemyTip {
	margin: 2px 0px 2px 30px;
	padding: 0px;
}

.newGlow {
	animation-name: newGlow;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

@keyframes newGlow {
	0% {
		color: gold;
		text-shadow: 0px 0px 0px;
	}

	50% {
		color: white;
		text-shadow: 0px 0px 8px;
	}

	100% {
		color: gold;
		text-shadow: 0px 0px 0px;
	}
}