/* RESET */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

/* BODY */
body {
	background-color: #f9f9f9;
	color: #222;
	margin: 0;
	line-height: 1.5;
	text-align: justify;
}

/* HEADER */
header {
	background-color: #111;
	color: white;
	padding: 25px 0;
	text-align: center;
}

header h1 {
	font-size: 32px;
	letter-spacing: 2px;
}

header h2 {
	font-size: 18px;
	font-weight: normal;
	margin-bottom: 20px;
}

/* MENU */
.menu {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.menu li button {
	background-color: #222;
	border: none;
	padding: 10px 18px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.menu li button:hover {
	background-color: #444;
}

.menu li button a {
	color: white;
	text-decoration: none;
	font-size: 15px;
}

/* TITRE PAGE */
.page-title, h1 {
	text-align: center;
	margin: 30px 0;
}

/* CONTENU */
p {
	text-align: center;
	margin: 10px auto;
	width: 80%;
	line-height: 1.5;
}

h2 {
	text-align: center;
	margin-top: 30px;
}

img {
	display: block;
	height: 200px;
	border-radius: 5px;
	margin: 15px auto;
}

/* Conteneur images si plusieurs */
.images {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}
