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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  line-height: 1.6;
  color: #333;
}

.page-container {
  background-color: white;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
  background-color: #EFEFEF;
  padding: 20px 0;
  text-align: center;
}

.logo-title-container {
  margin-bottom: 20px;
}

.site-title {
  font-size: 24px;
  color: #1C1F33;
  margin-bottom: 10px;
}

.morph-text {
  color: #A20021;
  font-size: 20px;
}

.subtitle {
  font-size: 18px;
  color: #A20021;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #123d5e;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.2s;
}

nav a:hover {
  color: #A20021;
  transform: scale(1.1);
}

main {
  padding: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

h2 {
  font-size: 1.8rem;
  color: #316085;
  border-bottom: 2px solid #214e70;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.5rem;
  color: #316085;
  margin-top: 30px;
  margin-bottom: 15px;
}

h4 {
  font-size: 1.2rem;
  color: #214e70;
  margin-top: 20px;
  margin-bottom: 10px;
}

p, ul, ol {
  margin-bottom: 15px;
}

ul, ol {
  padding-left: 30px;
}

li {
  margin-bottom: 10px;
}

a {
  color: #316085;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* MosaÃ¯que d'images dans la section "Teaching" */
.mosaic {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.mosaic a {
  display: block;
  width: calc(33.333% - 10px);
  max-width: 200px;
}

.mosaic img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.mosaic img:hover {
  transform: scale(1.05);
}

/* Section MetaMorph */
#metamorph ul {
  list-style-type: none;
  padding-left: 0;
}

#metamorph ul li {
  margin-bottom: 20px;
}

#metamorph ul li p {
  margin-top: 5px;
  font-size: 0.9em;
  color: #666;
}

/* Section Miscellaneous */
.picturesMisc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.picture {
  width: 250px;
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.picture:hover {
  transform: scale(1.05);
}

.insist {
  font-weight: bold;
  color: #A20021;
}

/* Pied de page */
footer {
  background-color: #EFEFEF;
  padding: 20px 0;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-text {
  color: #A20021;
  margin-bottom: 20px;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.logo {
  max-height: 50px;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .site-title {
      font-size: 20px;
  }

  .morph-text {
      display: block;
      font-size: 18px;
  }

  nav {
      flex-direction: column;
  }

  nav a {
      margin: 5px 0;
  }

  .mosaic a {
      width: calc(50% - 10px);
  }

  .picture {
      width: 100%;
  }
}

/* Styles pour la bibliographie */
#bibtex_display {
  font-size: 0.9em;
}

.bibtex_template {
  margin-bottom: 10px;
}

.citation-title {
  font-weight: bold;
}

.citation-author {
  font-style: italic;
}

.citation-journal,
.citation-year {
  color: #666;
}</pre></body></html>