body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
    background: url('images/wallpaper.jpg') no-repeat center center fixed; 
    background-size: cover;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Couleur noire avec 30% de transparence */
    z-index: -1; /* Permet à l'image de rester derrière le contenu */
}

header {
    color: Black;
    padding: 20px;
    text-align: center;
}
.entete {
	background: url('images/wallpaper.jpg'); 
	height : 150px;
	}
	
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
}

.container {
    width: 100%;
    margin: 20px auto; /* Centrage horizontal avec auto */
	justify-items: center; /* Centre les éléments dans chaque cellule de la grille */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px;


.image-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.center-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.info-box {
	background-color: rgba(240, 240, 240, 0.70); /* Blanc avec 70% de transparence */
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	width: 350px; /* Fixe une largeur pour chaque rectangle */
	text-align: left;
}
/* Effet de survol pour renforcer le relief */
.info-box:hover {
    transform: translateY(-5px); /* Légère élévation au survol */
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.25), 
                -6px -6px 15px rgba(255, 255, 255, 0.6);
}
.info-box h3 {
	margin-top: 0;
	text-align: center; /* Centre le texte à l'intérieur de chaque rectangle */
}