<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* style.css */

/* ... */

/* Polices */
body {
  font-family: 'Roboto', sans-serif;
}

p, h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
}

.morph-text {
  color: #A20021;
}

.site-title {
  margin-bottom: 0px;
}

/* En-tÃªte et pied de page */
header {
  background-color: #EFEFEF;
  padding: 10px 10px; /* Modification du padding pour Ã©viter le dÃ©calage */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px; /* Modifiez la largeur selon vos prÃ©fÃ©rences */
  margin: 0 auto;
  padding: 0 10px;
}

/* Logo et titre */
.logo-title-container {
  display: flex;
  flex-direction: column; /* Ajout de cette ligne pour aligner les Ã©lÃ©ments verticalement */
  justify-content: center;
  align-items: center;
  margin-bottom: 00px; /* Augmentez la marge pour ajouter plus d'espace entre les deux Ã©lÃ©ments */
  color: #1C1F33;
}

.subtitle {
  text-align: center;
  font-size: 1.2rem; /* Ajustez la taille de police selon vos prÃ©fÃ©rences */
  margin-bottom: 20px; /* Ajustez la marge selon vos prÃ©fÃ©rences */
  color: #A20021; /* Couleur personnalisÃ©e */
  margin-top: 10px; /* Ajoutez la marge que vous souhaitez entre les deux Ã©lÃ©ments */
}

.logo {
  max-height: 30px;
  margin-right: 20px;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #123d5e;
  margin-right: 40px;
}

nav a:hover {
  color: #A20021; 
  transform: scale(1.1); /* Ajoutez cette ligne pour l'effet de zoom */
  transition: transform 0.2s; /* Ajoutez cette ligne pour animer l'effet de zoom */
}

/* Sections */
main section {
  display: none;
}

/* Titres de section */
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #3f7cac;
  border-bottom: 2px solid #214e70;
  padding-bottom: 5px;
}

/* Listes */
ul {
  padding-left: 30px;
}

ul li {
  margin-bottom: 10px;
}


/* ... */


/* Contenu principal */
main {
  padding: 30px;
  margin-top: 90px; /* Ajout d'une marge pour compenser la hauteur du bandeau fixe */
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Ajout de marges automatiques Ã&nbsp; gauche et Ã&nbsp; droite lorsque la largeur de l'Ã©cran est supÃ©rieure Ã&nbsp; 1200px */
@media screen and (min-width: 1200px) {
  main {
    margin-left: auto;
    margin-right: auto;
  }
}

main section {
  display: none;
  padding-top: calc(20px + 1rem); /* Ajout du padding en fonction de la hauteur de l'en-tÃªte */
}

/* Pied de page */
footer {
  padding: 0;
  text-align: center;
  margin-top: 50px;
  width: 100%;
}

.footer-container {
  max-width: auto;
  margin: 0;
  padding: 60 50px;
}

footer .footer-text {
  background-color: #efefef;
  padding: 0px;
  color: #A20021;
  font-size: 1rem;
  width: 100%; /* Ajout de cette rÃ¨gle */
}

footer .logo-container {
  background-color: #ffffff;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
/* ... */

.citation-table {
  width: 100%;
  border-collapse: collapse;
}

.citation-row {
  border-bottom: 1px solid #ccc;
}

.citation-row:last-child {
  border-bottom: none;
}

.citation-title,
.citation-author,
.citation-journal,
.citation-year {
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

.citation-title {
  font-weight: bold;
}</pre></body></html>