#counter {
	background-color: #3b4ac0;
	font-size: 1.6rem;
	line-height: 2rem;
	font-weight: 500;
}

#counter .grid {
	gap: 24px;
	grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 600px) {
	#counter {
		font-size: 3.2rem;
		line-height: 3.6rem;
	}
	#counter .grid {
		gap: 48px;
	}
}

#nav-spieler .grid {
	gap: 24px;
}
#nav-spieler .grid:last-child {
	margin-bottom: 0;
}
#nav-spieler .grid > div {
	position: relative;
	height: 300px;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	background-color: #666;
}
@media (min-width: 600px) {
	#nav-spieler .grid {
		margin-bottom: 24px;
	}
	#nav-spieler .grid[cols="6-6"] {
		grid-template-columns: repeat(2, 1fr);
	}
	#nav-spieler .grid > div:nth-child(1) {
		clip-path: polygon(0 0,100% 0,calc(100% - 24px) 100%,0% 100%);
	}
	#nav-spieler .grid > div:nth-child(2) {
		clip-path: polygon(24px 0,100% 0,100% 100%,0% 100%);
	}
}
#nav-spieler .grid > div::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	background-color: rgba(59, 74, 192, 0.15);
	transition: background-color .25s ease-in-out;
}
#nav-spieler .grid > div:hover::before {
	background-color: rgba(59, 74, 192, 0.75);
}
#nav-spieler .grid > div.hover-gold:hover::before {
	background-color: rgba(182, 158, 90, 0.5);
}
#nav-spieler .grid > div a {
	display: grid;
	align-items: center;
	height: 100%;
	position: relative;
	z-index: 3;
}
#nav-spieler .grid > div a h3 {
	margin: 0;
	text-shadow: 0 0 4px grey;
	text-transform: uppercase;
}

#anfahrt {
	background-color: #3B4AC0;
}

#anfahrt h2 {
	text-align: center;
}

#anfahrt .eins {
	text-align: center;
}

#anfahrt .eins p {
	margin: 0;
}

#anfahrt .eins a {
	color: #fff;
}

#anfahrt .eins a:hover {
	text-decoration: underline;
}

#anfahrt .vier {
	text-align: center;
}

#anfahrt .vier h3 {
	font-size: 20px;
	font-weight: 400;
}



