body {
	width: 100%;
	height: 100%;
	background-color: #202020;
	margin: 0;
}

.main {
	/* ceci définit le style de la section principale */
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-top: 45px;
	margin: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

header {
	/* ceci définit le style de l'en-tête */
	width: 100%;
	height: 40px;
	position: fixed;
}

header h1 {
	font-size: 30px;
	color: #FFFFFF;
}

.card {
	/* ceci définit le design des cards. */
	width: 30vw;
	height: 50vh;
	min-width: 350px;
	/* début de la section pour l'effet de blur */
	background-color: rgba(55, 55, 55, 0.4);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	/* fin de la section pour l'effet de blur */
	transition: 0.3s;
	border-radius: 20px;
	padding: 25px;
	margin: 5px;
	align-items: center;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.card:hover {
	/* ceci définit l'effet au survol des cards. */
	transform: translateY(-6px);
	box-shadow: 0px 20px 30px rgba(15, 15, 15, 1);
}

.card h2 {
	/* style des titres dans les cards */
	font-size: 26px;
	color: #FFFFFF;
	text-align: center;
}

.card p {
	/* style des paragraphes dans les cards */
	font-size: 22px;
	color: #FDFDFD;
	text-align: center;
}

.card a {
	/* style des boutons dans les cards */
	display: inline-block;
	padding: 12px 20px;
	background: #505050;
	border-radius: 15px;
	color: #FDFDFD;
	text-decoration: none;
	transition: 0.3s;
}

.card img {
	/* style des images dans les cards */
	height: 50%;
	width: auto;
	object-fit: cover;
	object-position: center;
	border-radius: 15px;
}

.slideshow {
	height: 55vh;
	width: 100%;
	overflow-x: scroll;
	overflow-y: hidden;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
}