scraping text item by beautifulsoup
Assuming the format doesn't change, you can use this code:
soup.find_all("p", {"class": "css-1ccncw"})[2].text
.find_all
method finds every elements that match the given conditions. First argument refers to the tag and the next one is a dict containing attributes the tag is supposed to have.