.bloc-fichier{
	background: #eee;
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
}

.bloc-fichier a{
	border: solid 1px #aaa;
	border-radius: 5px;
	background: #fff;
	color: inherit;
	display: block;
	padding: 10px;
	margin: 10px;
	max-width: 250px;
	width: 100%;
	transition: .5s;
}

.bloc-fichier a .fich-img{
	border: solid 1px #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 300px;
}
.bloc-fichier a .fich-img img{
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.bloc-fichier a p.fich-name{
	text-align: center;
	font-weight: 600;
	margin: 10px 0 0;
}
.bloc-fichier a:hover{
	text-decoration: none;
	transform: scale(1.05);
}