button{
	position : relative; /* MISE EN PAGE */
	background-color : #00C000;
	border : none;
	color : white;
	padding : 15px 32px;
	text-align : center;
	text-decoration : none;
	display : inline-block;
	font-size : 16px;
	margin : 4px 2px;
	cursor : pointer;
}

#conteneur{
	display : flex;
	margin : 0;
	justify-content : center;
	margin : 0;
}

#jeu{
	/* on utilise les flex box pour centrer c'est plus facile */
	display : flex;
	
	/* pour centrer horizontalement */
	justify-content : center;
	margin : 0;
	position : relative;
	border : 5px white solid;
}

body{
	background-color : dimgray;
	color : floralwhite;
}