body {
    font-family: Arial, sans-serif;
    padding: 30px;
    margin: 0;
    background-color: #f5f5f5;
  }
  
  
  header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    
  }
  
  
  header h1 {
    margin: 0;
    text-align: center;
    padding: 30px;
  }
  
  header p {
    text-align: center;
    padding: 30px;
  }
  
  /* Styles pour le conteneur des liens */
.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #333;
  margin-right: 10px;
}

.nav-links a:hover {
  background-color: #555;
}

 /* Styles pour centrer le lecteur PDF */
 .pdf-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content; /* Facultatif : ajustez la hauteur selon vos besoins */
}
.embed-pdf {
  width: 100%;
  max-width: fit-content; /* Facultatif : limitez la largeur du lecteur PDF si nécessaire */
  height: fit-content; /* Pour maintenir le rapport hauteur/largeur */
}
/* Media queries pour les écrans de petite taille */
@media (max-width: 768px) {
  .nav-links {
    justify-content: center;
  }

  .nav-links a {
    margin: 0 5px;
  }

  .pdf-container {
    width: 100%;
  }
  section {
    background-color: #f5f5f5;
    padding: 20px;
  }
} 
  h2{
    text-align: center;
  }
  
  footer {
    position: bottom;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  }