

/*Menu*/



nav{
	/*border: 2px solid #000;*/
}

ul{
	display: flex;
	flex-wrap: wrap;   /* Revoie à la ligne quand il n'y a plus de place*/
	justify-content: center;
	margin: 0px;
	padding: 0px;
	/*border: 2px solid #F00;*/
	
	/*flex-direction: column;*/
	list-style-type: none;

}

li{
	margin: 10px;
	border: 1px solid #FFF;
	border-radius: 3px;
	text-align: center;
	background-color: #CCC;
	width: 250px;
	height: 30px;
	line-height: 30px;
	
}

a {
	text-decoration: none;
	color: #000;
}


@media	screen	and (max-width: 1280px){

	ul{
		
		display: flex;
		flex-direction: column;
	}
	li{
		margin-left: 0px;
		margin-bottom: 5px;
		width: 100%;
		border-top: 2px solid #FFF;
		border-bottom: 2px solid #FFF;
		border-left: none;
		border-right: none;
		font-size: 50px;
		height: 60px;
	line-height: 60px;

	}
}