Environment Zoom

hi, is there a way for me to zoom right into the Environment component? (I am using Environment component as 360 viewer. and to examine the results of the seat in the hdr extension image I uploaded) here ise the example code;

  <>
      <Canvas
        style={{
          width: "100%",
          height: windowHeight.current,
        }}
        camera={{ position: [0, 0, 2] }}
      >
        <Environment files="./assets/new_hdr.hdr" background />
        
        <Html transform position={[0, 10, 5]}>
          <text style={{ backgroundColor: "red" }}>MyButton</text>
        </Html>
        <Stats />
        <OrbitControls
          minPolarAngle={-Math.PI / 2}
          maxPolarAngle={Math.PI / 2.1}
          autoRotate
          autoRotateSpeed={-0.75}
          enableZoom={true}
          enablePan={false}
          enableRotate={true}
          // maxDistance={5}
          // minZoom={1}
          //  maxZoom={2}
          // minDistance={0.25} maxDistance={5}
        />
      
        <MyModel position={[0, 0, 0]} />
      </Canvas>
    </>

you need to change camera.fov instead of camera distance