.le-contenu {
display: flex;
flex-wrap: wrap;
flex: 1;
}
section {
width: 100%;
margin: 5px;
}
section, article {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-start;
}
article {
margin: 5px;
width: 100%;
border: 1px solid #000;
border-radius: 10px;
box-shadow: inset 0px 0px 2px 2px rgba(0, 0, 0, .8);
}
.article {
flex: 1;
min-width: 300px;
}
h2 {
width: 100%;
margin: 0;
padding: 2px 10px;
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.nous {
flex: 1;
align-self: center;
padding: 10px;
text-align: center;
min-width: 300px;
}
.image {
max-width: 100%;
height: auto;
margin: 10px;
align-self: center;
border: 1px solid #000;
border-radius: 10px;
}
.liframe {
position: relative;
width:100%;
margin: 5px auto;
padding-bottom: 75%;
height: 0;
overflow: hidden;
}
.liframe iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}