.le-contenu {
display: flex;
flex-wrap: wrap;
flex: 1;
}
section {
width: 100%;
margin: 5px;
}
section, article {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
justify-content: center;
}
article {
width: 100%;
margin: 5px;
border: 1px solid #000;
border-radius: 10px;
box-shadow: inset 0px 0px 2px 2px rgba(0, 0, 0, .8);
}
.article {
flex: 1;
margin: 10px;
}
h2, h3.h3 {
margin: 0;
padding: 2px 10px;
width: 100%;
border-bottom: 1px solid #000;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
box-shadow: inset 0px 0px 2px 2px rgba(0, 0, 0, .8);
background: linear-gradient(30deg, #aed6f1,  #2980b9,  #d4e6f1,  #d4e6f1);
}
p {
flex: 1;
align-self: center;
text-align: center;
min-width: 250px;
}
p.un {
order: 1;
}
p.deux {
flex: 1 1 100%;
padding: 10px;
}
p.trois {
flex: 1;
padding: 10px;
}
.image {
max-width: 100%;
height: auto;
margin: 10px;
border: 1px solid #00F;
border-radius: 10px;
align-self: center;
}
img.img {
border: none;
margin: 5px;
align-self: center;
}