#container_affiche2
{
	display: flex;
	flex-direction: column;
}

#titre
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0 20px;
	color: var(--color2);
	font-family: 'Playfair';
}

#titre > p
{
	font-weight: bold;
	text-align: center;
	border-bottom: solid 1px #ffd701;
}

@media(min-width: 600px)
{

	#container_affiche2
	{
		flex-direction: row;
		width: 100%;
		max-width: 800px;
	}

	#container_affiche2 > img
	{
		width: 60%;
		height: auto;
	}

	#titre
	{
		width: 40%;
	}


	#titre > p
	{
		
	}
}

@media(min-width: 1000px)
{
	#titre > p
	{
		font-size: 1.2em;
	}
}