:root {
	--purple: rgb(161, 94, 189);
	--darkpurple: #421954da;
}

html, body {
	margin: 0;
	font-family: "Noto Serif", serif;
}
nav {
	width: 100%;
	font-size: 2.5em;
	color: white;
	font-weight: bold;
	text-align: center;
	background-color: var(--darkpurple);
	padding: 0.2em;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}

.fighter-cards {
	margin-top: 7em;
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
}

.fighter-card {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 1em;
	border-radius: 5px;
	width: 20em;
	background-color: var(--purple);
	box-shadow: 2px 2px 4px gray;
	margin: 1em;
	color: white;
}

.fighter-card > img {
	width: 80%;
	height: auto;
	padding: 1em;
}

.fighter-card.taken {
	background-color: gray;
	color: black;
}

.fighter-card.taken > img {
	filter: grayscale();
}
.fighter-card > .name {
	font-size: 2em;
	font-weight: bold;
}
.fighter-card > .chatter {
	font-style: italic;
	font-size: 1.4em;
}