/* ScrollZoomEffect Custom CSS */
.spacer {
  background-color: antiquewhite;
  height: 100vh;
}

.image-unmask {
  height: 100vh;
  overflow: hidden;
}

.inner {
  margin: 50px;
  padding: 50px;
  min-height: 25vh;
  margin-left: 10vw;
  max-width: 80vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}

#img {
  position: fixed;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: -1;
  transform: translate(-50%, -50%);
}

#svg {
  position: absolute;
  top: 0;
  left: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;
  z-index: 1; /* ensure mask is above background images */
  pointer-events: none; /* allow scrolling and clicks through svg */
}

.content {
  background-color: #f0f0f0;
  min-height: 100vh;
  padding: 50px 0;
}
