#contenu
{
	display: flex;
	justify-content: center;
	align-items: center;
}

#bloc_central
{
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #F4F4F4;
	border: 6px solid #BDBDBD;
	min-height: 75vh;
	justify-content: center;
	text-align: center;
}

#titre
{
	text-align: center;
}

#image
{
	height: 50vh;
}

#explications
{
	text-align: center;
	margin-top: 10px;
	margin-bottom: 20px;
}

#instructions
{
	text-align: center;
}



/*!!!!! CODE DES PAGES DE PLUS DE 1024 PX DE LARGE !!!!!*/
@media (min-width: 1024px)
{
	#bloc_central
	{
		width: 	60vw;
	}

	#titre
	{
		font-size: 45px;
		margin-bottom: 	25px;
	}

	#sous_titre
	{
		font-size: 35px;
	}

	#explications
	{
		font-size: 20px;
	}

	#instructions
	{
		font-size: 25px;
	}
}



/*!!!!! CODE DES PAGES DE MOINS DE 1023 PX DE LARGE !!!!!*/
@media (max-width: 1023px)
{
	#bloc_central
	{
		width: 	90vw;
	}

	#titre
	{
		font-size: 35px;
		margin-bottom: 	20px;
	}

	#sous_titre
	{
		font-size: 30px;
	}

	#explications
	{
		font-size: 18px;
	}

	#instructions
	{
		font-size: 22px;
		margin-top: 20px;
	}
}