
body {
	background-color: #e0e0e0; /* Gris très clair */
	color: #2f2f2f; /* Gris foncé */
	font-family: 'Arial', sans-serif;
	margin: 0;
	padding: 0;
}
.cadrage {
	max-width: 1000px;
	margin: 20px auto;
	padding: 20px;
	background: #b0b0b0; /* Gris moyen */
	border-radius: 10px;
	box-shadow: 0px 0px 15px rgba(47, 47, 47, 0.2);
}
h1 {
	text-align: center;
	font-size: 48px;
	color: #2f2f2f; /* Gris foncé */
	font-family: 'Georgia', serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
}
h2 {
	text-align: center;
	font-size: 28px;
	color: #2f2f2f; /* Gris foncé */
	background-color: #808080; /* Gris standard */
	padding: 10px;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(47, 47, 47, 0.2);
}
.intro, .image-text {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}
.intro img, .image-text img {
	height: 350px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(47, 47, 47, 0.3);
}
.intro p, .image-text p {
	flex: 1;
	font-size: 20px;
	color: #2f2f2f; /* Gris foncé */
	line-height: 1.6;
}
.intro p i, .image-text p i {
	font-style: italic;
	font-weight: 400;
}
.contributions {
	background: #a0a0a0; /* Gris clair */
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0px 0px 10px rgba(47, 47, 47, 0.3);
	margin-top: 30px;
}
a {
	color: #2f2f2f; /* Gris foncé */
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
}
a:hover {
	color: #6c6c6c; /* Gris plus clair pour le survol */
}
.video-container {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
video {
	width: 100%;
	max-width: 800px;
	border-radius: 10px;
	box-shadow: 0px 0px 20px rgba(47, 47, 47, 0.5);
}
