/* Reset de la mise en page par défaut du navigateur */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Définir la police globale */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  padding: 20px;
}

/* Stylisation de l'en-tête */
header {
  background-color: #009688;
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

header #email {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
}

header #photo {
  width: 120px;
  height: auto;
  border-radius: 50%;
  margin-top: 10px;
  border: 3px solid #fff;
}

header p {
  font-size: 1.1em;
  margin: 15px 0;
}

header ul {
  list-style-type: none;
  padding: 0;
}

header ul li {
  font-size: 1.1em;
  margin: 5px 0;
}

/* Section principale */
section {
  margin-top: 20px;
}

section h2 {
  background-color: #00796b;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 1.8em;
}

section h3 {
  font-size: 1.4em;
  color: #00796b;
  margin-top: 10px;
}

section p {
  margin: 10px 0;
}

section ul {
  list-style-type: square;
  margin-left: 20px;
  font-size: 1.1em;
}

section ul li {
  margin-bottom: 5px;
}

section .gris_italique {
  font-style: italic;
  color: #757575;
}

/* Footer */
footer {
  background-color: #00796b;
  color: #fff;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
  border-radius: 10px;
}

footer h2 {
  font-size: 1.6em;
  margin-bottom: 15px;
}

footer p {
  font-size: 1.2em;
  margin: 10px 0;
}

footer a {
  color: #fff;
  text-decoration: underline;
}
