#activites {
	padding: 1%;
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
}

#activites li {
	vertical-align: bottom;
	padding: 1% 2%;
	min-width: 5%;
	flex: 1 1 auto;
	text-align: center;
	border: var(--white) 1px solid;
	border-radius: ;
}

#activites li:hover  {
	background-color: var(--white);
	color: var(--main-bg-color);
}


#activites li a {
	color: var(--link-color);
}

#activites li a:hover {
	font-weight: unset;
	color:inherit;
}

#images {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2vh;
}

#images img {
	max-height: 20vh;
	min-width: auto;
}