.menu
{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-around;
	max-width:1000px;
	margin:auto;
}

.elements_menu
{
    display: flex;
	margin:5px;
	width:250px;
	font-size:45px;
	transition: transform .3s;
}

.elements_menu:hover
{

-ms-transform: scale(1.08); /* IE 9 */
-webkit-transform: scale(1.08); /* Safari 3-8 */
transform: scale(1.08);
}

.img_onglet
{
	width:250px;
	height:180px;
	filter: brightness(50%);
	border-bottom-right-radius: 30px;
}


.contenant {
  position: relative;
  text-align: center;
  color: white;
}

.texte_centrer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
}