body {
    margin:0;
  }
  
.overlay {
    position: sticky;
    height: 100vh;
    top: 0;
  }
  
  .text {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content:center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
  }
  
  .text-inner {
    transform: translatex(50vw);
    font-size: 2rem;
    color: white !important;
      
  }
  
  .track{ 
   height: 100vh;
  }
  
  .gradient {
    background: linear-gradient(
      255deg,
      #efe8de,
      #efe8de 40%,
      #efe8de 60%,
      #f1e7dd
    );
      z-index: -1;
      width: 100%;
      height: 100vh;
      position: absolute;
      top: 0%;
      bottom: 0%;
      left: 0%;
      right: 0%;
  }
  
  .shape {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    mix-blend-mode: color-burn;
    background: #efe8de;
  }
  
  .shape .img {
    width: 20rem;
    height: 20rem;
    transform: rotate(45deg);
    position: relative;
    overflow: hidden;
  }
  
  .shape .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center center;
    display: block;
    image-rendering: auto;          /* default, for high-res PNGs */
    image-rendering: crisp-edges;   /* optional: forces sharp edges on some browsers */
  }
  
  
  .overlay {
    overflow: hidden;
  }