Looking to incorporate a delay into a "function" for a website project. The button is already present, but I want to alter its visibility. Despite multiple attempts, my efforts have been unsuccessful. Initially, the button should be invisible, and then it should become visible after a delay. I've tried inserting code in between the two blocks, but with no luck so far. Here's the current code snippet:
body.page-id-2090 #button{
visibility: hidden;
}
body.page-id-2090 #button{
visibility: visible;
}