/* Parallax insanity for MakeCore landing page */
.parallax-layer {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.parallax-title {
  position: fixed;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000;
  pointer-events: none;
  max-width: 34vw;
  width: auto;
  height: auto;
  display: block;
}


@media (max-width: 700px) {
  .parallax-title-reflection {
    width: 60vw;
    max-width: 90vw;
  }
}

.parallax-base {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100%;
  min-height: 100vh;
  max-height: none;
  object-fit: cover;

  z-index: 2;
  opacity: 0.5;
  pointer-events: none;
}