@font-face {
  font-family: 'Lil Grotesk';
  src: url('../lilgrotesk/LilGrotesk-Regular.otf') format('truetype');
}

@font-face {
  font-family: 'Blinds Audience';
  src: url('../blindsaudience/Blinds\ Audience.otf') format('woff');
}

.gallery-container {
    width: 100%;
    overflow: hidden;
    background-image:linear-gradient(#FEF1E8,grey,#0e1c15);
    position:relative;
  }
  
  .gallery {
    display: flex;
    animation: scroll 30s linear infinite;
  }
  
  .gallery img {
    width: 15em; /* Ajustez selon vos besoins */
    height: 23em;
    margin-right: 20px; /* Espace entre les images */
    object-fit:cover;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }