* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    font-size: 12pt;
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  header {
    height: 40px;
    background-color: black;
    color: white;
    text-align: center;
    display: flex;
    align-items: center; 
    justify-content: space-between;
    padding: 0 10px;
  }
  
  #titre-image {
    margin: 0;
    padding: 0;
    color: aqua;
  }
  
  .extrait {
    text-align: center;
  }

  nav {
    display: inline-block;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    padding: 0;
  }
  
  nav li {
    margin: 0 15px;
    display: inline-block;
  }
  
  nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: block;
    text-align: center;
    width: 150px;
    line-height: 40px;
  }
  
  nav a:hover {
    background-color: #555; 
  }
  
  main {
    display: flex;
    align-items: center;
    margin: 20px;
  }
  
  .logo-container {
    width: 100%;
    text-align: center;
    margin-bottom: 20px; 
  }
  
  .article-image {
    width: 200px; 
    align-content: center;
  }
  
  article {
    width: 70%;
    padding: 10px;
    margin-top: 20px;
  }
  
  article h2 {
    text-transform: uppercase;
    font-size: 1.5rem;
  }
  
  .plus {
    display: block;
    text-align: right;
    color: red;
    text-decoration: none;
    margin-top: 10px;
  }
  
  .plus:hover {
    text-decoration: underline;
  }
  
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: black;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0px -5px 5px rgba(0, 0, 0, 0.3);
  }
  
  footer .partenaires {
    text-align: left;
  }
  
  footer .partenaires p { 
    margin-bottom: 10px;
  }
  
  footer .partenaires ul {
    list-style: none;
  }
  
  footer .partenaires li {
    margin-bottom: 5px;
  }
  
  footer .partenaires a {
    text-decoration: none;
    color: #ccc;
  }
  
  footer .partenaires a:hover {
    text-decoration: underline;
  }
  
  footer .footer-info {
    text-align: right;
  }
  
  footer .footer .adresse {
    margin-bottom: 5px;
  }
  
  footer .footer a {
    text-decoration: none;
    color: #ccc;
  }
  
  footer .footer a:hover {
    text-decoration: underline;
  }
  