<!--
    body {
      background-color: #fff;
      }
    .bandeau {
      background-color: #1d1d1b;
      width: 100%;
      height: 50px;
    }
    header.bandeau {
      position: fixed;
      top: 0;
      left: 0;
    }
    footer.bandeau {
      position: fixed;
      bottom: 0;
      left: 0;
    }
    main {
      padding-top: 60px;
      padding-bottom: 60px;
    }
    .parent {
      display: flex; /* contexte sur le parent */
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: calc(98vh - 140px);
      width: 70%;
      text-align: center;
      margin: 0 auto;
    }
    .galerie {
      display: flex;
      gap: 1rem;
      max-width: 600px;
      margin: 0 auto;
      margin-bottom: 2em;
    }
    .galerie img {
      margin: 0 auto;
      display: block;
    }
    img {
      max-width: 400px;
      height: auto;
    }
    .slogan {
      font-family: Titillium Web;
      font-weight: bold;
      font-size: 2em;
      line-height: 1em;
      margin-bottom: 2em;
      margin-top: .2em;
    }
    .gamme {
      font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
      font-weight: bold;
      background-color: #f2b826;
      color: black;
      display: inline-block;
      padding: 10px 20px;
      margin-bottom: 20px;
      border-radius: 5px;
    }
    .presentation {
      font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
      text-align: justify;
      font-size: 1.1em;
      line-height: 1.4em;
    }

    @media (max-width: 768px) {
      .parent {
        width: 95%;
      }
      .galerie {
        flex-direction: column;
      }
      .galerie img {
      }
    .presentation {
      text-align: center;
    }
    }

    -->