* /* concerne tous les éléments */
{
	box-sizing: border-box; /* la boite inclue contenu , padding et bordure */
}
/* ========== HEADER ==== */
header
{
	background-color: ivory;
	border: 2px solid brown ;
	border-radius:15px; 
}
.mission-themes
{
	padding :10px;		
}
.theme-tag
{
	font-family:'Courier Prime',monospace;
	font-size:1.15rem; 
	padding:6px 12px;
	border:1px solid ;
	border-radius:20px; 
	color:brown;
}
/* ========== BODY ==== */
body
{
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	background-color: ivory;
	border: 2px solid white;
	font-family: "Work Sans", "Trebuchet MS", Times, Arial, sans-serif;
	padding: 0 16px;
	line-height:1.6;
}   
#synthese
{
	border: 2px solid white;
	border-radius: 5px;
	padding:10px;
}  
#plusloin
{
	margin-top:10px;
	border: 2px solid white;
	border-radius: 5px;
	padding:10px;
}
h1, h2, p, figure
{
	letter-spacing: -0.01em;
}
.figures
{	
display: flex; /* Active le modèle flexbox */
justify-content: space-around;
align-items: flex-end;
}
.figpopo
{
flex:0 1 auto;
}

.figpopo img
{
width:100%; 
height: auto;
}
.figpopo figcaption
{
font-family:'Courier Prime',monospace;
font-size:1.15em; color:var(--stone-dark);
margin-top:8px; 
text-align:center;
}
/* ===== Adaptation smartphone ===== */
@media (max-width: 600px)
{
	.theme-tag
	{
		font-size:0.75rem; 
		padding:5px 6px;
	}
	body
	{
		border-width: 1px;
		padding: 0 12px;
	}
	h1
	{
		font-size: 1.4em;
	}
	h2
	{
		font-size: 1.15em;
	}
	p
	{
		font-size: 0.95em;
		line-height: 1.5;
	}
	img
	{
		width: 100%;      /* les images passent en pleine largeur et se placent l'une sous l'autre */
		display: block;
		margin: 0 auto 10px auto;
	}
}
@media (max-width: 380px)
	{
		h1
		{
			font-size: 1.2em;
		}
	}