body {
	background-color: #dddbcc;
	margin: 15px;
	font-family: "book-antiqua";
	min-width: 580px;
}

h1 {
	color: black;
	text-align: center;
}
p {	color: black;
	text-align: center;
	text-indent: inherit;
	font-size: 18px;
}
.attack-number {
	text-align: center;
}
.guess {
	border-radius: 10px;
	box-shadow: 3px -5px 30px #4c4c4c8a;
	padding-left: 5px;
}
.action {
	text-align: center;
}
.action button {
	border-radius: 10px;
	margin-top: 10px;
}
.flex-container {
	display: flex;
	justify-content: space-around;
}
.enemy,
.hero,
.history {
	margin-top: 20px;
	text-align: center;
}
.enemy {
	position: relative;
}
.hero {
	position: relative;
}
.enemy > img,
.hero > img {
	height: 300px;
	border-radius: 10px;
	box-shadow: 5px 5px 8px #000000;
}
.past {
	font-size: 12px;
}
.past img {
	height: 12px;
	top: 1px;
	position: relative;
}
.hide {
	display: none;
}
.hitBorder {
	border: 4px dotted #ff0000;
	margin: -4px;
}
.enemy .slash img {
	transform: rotate(90deg) scaleX(-1);
}
.slash img {
	width: 186px;
	transform: rotate(-70deg);
	position: absolute;
	top: 105px;
	left: 10px;
}