#trikots_container {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	flex-wrap: wrap;
}
.trikot_item {
	margin-top: 2em;
	
	width: 33%;
	min-width: 300px;
	max-width: 400px;
	aspect-ratio: 2 / 3;
	
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.trikot_title {
	text-align: center;
	font-weight: bold;
	height: 30px;
}
.trikot_link {
	color: black;
	height: 30px;
	text-align: center;
}
.trikot_img {
	width: 100%;
	height: calc(100% - 60px);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;	
}