#contenus {
	width:100%;
	text-align:justify;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-around;
	align-items:center;
	overflow: auto;
	/*mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%)*/
	grid-area: contenu;
}

#contenu {
	grid-area: contenu;
}

.article {
	background-color: rgba(255, 255, 255, 0.7);
	box-shadow: 3px 3px 3px black;
	border-radius: 10px;
	padding: 10px;
	width: 252px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	margin: 10px;
}

/*@media only screen and (max-width: 800px) {
	.article 
	{
	min-width: 280px;
	}
}*/

.article:hover {
	box-shadow: 5px 5px 5px black;
	font-weight: normal;
}

.article_titre {
	width:100%;
	margin: 0px;
	height:fit-content;
	font-family: "Copperplate";
}

.article_contenu {
	width: 100%;
	white-space: pre-line;
	max-height: 130px;
	overflow: hidden;
	font-size: small;
	margin: 10px 0px;
}

.article_date {
	width: 100%;
	height: fit-content;
	text-align: right;
	font-family: "Courier New";
	font-size: small;
	font-weight: bold;
	margin: 0px;
}

.image {
	background-color: rgb(255, 255, 255);
	box-shadow: 3px 3px 3px black;
	border-radius: 10px;
	padding: 10px;
	margin: 10px;
}

.image:hover {
	box-shadow: 5px 5px 5px black;
}

.image_date {
	font-weight: bold;
	font-family: "Courier New";
	font-size: small;
}

.youtube {
	background-color: rgb(255, 255, 255);
	box-shadow: 3px 3px 3px black;
	padding: 10px;
	width: fit-content;
	min-width: 200px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	margin: 10px;
}

.youtube:hover {
	box-shadow: 5px 5px 5px black;
	font-weight: normal;
}

.youtube_titre {
	font-family: "Courier New";
	font-size: small;
	font-weight: bold;
}

.youtube_contenu {
	margin: auto;
}

/*
.youtube_date {
	width: 100%;
	height: fit-content;
	text-align: right;
	font-family: "Courier New";
	font-size: small;
	font-weight: bold;
}*/

.voir_plus_contenus {
	width: 100%;
	text-align:center;
	margin-top: 20px;
}