#slide1 {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: opacity 0.5s ease;
}

#slide1.slide-exit {
  opacity: 0;
  pointer-events: none;
}

.slide1-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}