I simply want to make sticky card but it does not stick when i scroll
<Box display={'flex'} width={'100%'} height={'150rem'}  >
  <Box width={'100%'}>
    {features.map((feature) => (
      <div key={feature.id}>
        <Typography variant='h2' py={10} color={'grey'}>
          {feature.title}
        </Typography>
      </div>
    ))}
  </Box>
  <Box position={'sticky'} width={'100%'} sx={{ backgroundColor: 'grey' }} top={0} height={'50rem'} alignSelf={'flex-start'} >
    sticky card placeholder
  </Box>
</Box>

 
    