body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}


/* Overlay sombre pour améliorer la lisibilité du texte */
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Couleur noire avec 50% d'opacité */
}

/* Contenu de l'en-tête */
header .header-content {
  position: relative;
  z-index: 1;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
}

/* Section des projets */
#projets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.projet {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 10px;
  padding: 20px;
  width: 300px;
  text-align: center;
}

.projet img {
  max-width: 100%;
  border-radius: 5px;
}

/* Formulaire d'évaluation */
#evaluation {
  padding: 20px;
  background-color: #fff;
  margin: 20px;
  border-radius: 5px;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 10px;
}

form button {
  margin-top: 20px;
  padding: 10px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}