.carrousel-container {
  position: relative;
  margin: auto;
  overflow: hidden;
  background-color: #fff;
  z-index: 1;
}
.carrousel-container h1 {
  position: absolute;
  top: 23%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  text-align: center;
}
.carrousel-container h1 img {
  filter: contrast(200%) grayscale(100%) brightness(200%);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  display: block;
  animation: 3s 2s forwards ease-in-out carrousel-background-appear;
  opacity: 0;
}
.carrousel {
  display: block;
  width: 100vw;
  height: 100vh;
  position: relative;
  /* background-image: url("photos/villa-velleron-2022d-background.jpg"); */
  background-size: cover;
  background-position: center;
}
.carrousel-background {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: blur(10px);
  animation: 3s forwards ease-in-out carrousel-background-appear;
  z-index: -1;
}
@keyframes carrousel-background-appear {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: none;
  }
}
.slide {
  display: block;
  width: 100vw;
  height: 100vh;
  margin: 0;
  position: absolute;
  opacity: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: opacity 2s ease-in-out;
}

.slide a img:hover {
  filter: brightness(0.5);
}

.button-prev,
.button-next {
  font-size: 4rem;
  font-family: "Gotham Thin", sans-serif;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 2rem;
  background-color: transparent;
  color: white;
  border: none;
  opacity: 0.5;
}

.button-prev:hover,
.button-next:hover {
  opacity: 0.9;
  text-shadow: 0px 1px 6px rgba(0, 0, 0, 0.9);
}

.button-next {
  right: 2rem;
  left: auto;
}
