@font-face {
  font-family: "Faune-Regular";
  src: url(assets/fonts/Faune-Text_Regular.woff),
    url(assets/fonts/Faune-Text_Regular.woff2);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Faune-Bold";
  src: url(assets/fonts/Faune-Text_Bold.woff),
    url(assets/fonts/Faune-Text_Bold.woff2);
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Faune-Italic";
  src: url(assets/fonts/Faune-Text_Italic.woff),
    url(assets/fonts/Faune-Text_Italic.woff2);
  font-weight: italic;
  font-style: normal;
}

body {
  font-family: "Faune-Regular";
  background: #deb887;
  color: #0a0a0a;
  margin: 0;
}

h1 {
  margin: 0;
  font-size: 1.6em;
}

a {
  text-decoration: underline;
  color: #0a0a0a;
}
header {
  max-height: 20vh;
  position: sticky;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: left;
  margin: 1em;
}

#logo {
  max-height: 4.6em;
}

ul {
  /* display: flex; 
  */
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.4em;
}

#image-container {
  overflow-x: scroll;
  display: flex;
  flex-direction: row;
  gap: 2;
  box-shadow: 0 0 20px #00000073;
}
#infos {
  height: 78vh;
}

#infos p {
  padding: 1em;
  max-width: 30em;
  font-size: 1.4em;
}

#image-container img {
  filter: grayscale();
  max-height: 80vh;
  mix-blend-mode: multiply;
}

#image-container img:hover {
  filter: grayscale(0);
  /* mix-blend-mode: normal; */
  transition: all 100ms ease-in;
}
