/* ==========================================================================
   GUILD SCENE
   ========================================================================== */


/* ==========================================================================
   01. SCENE
   ========================================================================== */

.guild-scene {

   position: relative;

   min-height: 300vh;

   background: #080808;

}

.scene-scroll-space {
    height: 200vh;
}

.scene-camera {

   position: absolute;
   inset: 0;

   transform-origin: center bottom;

   transform:
      scale(
         calc(
            1 + (var(--hall-progress) * 0.20)
         )
      );

    transition: transform 40ms linear;

}