I encountered an issue where, after setting a background image to cut off at a specific point on my website and adjusting its opacity, the down arrow button stopped functioning. Strangely, another button on the site that doesn't have a background behind it still works fine. Below is the code snippet related to this problem. Any insights on why this particular behavior occurred would be appreciated! :)
Any thoughts on how this situation came about?
html{
scroll-behavior: smooth;
}
#down{
padding-top: 130px;
opacity: 1.0;
}
.bi-arrow-down-circle{
margin-left: auto;
margin-right: auto;
height: auto;
display: block;
text-align: center;
padding-bottom: 30px;
width: 100px;
height: 100px;
margin-top: -150px;
opacity: 1.0;
margin-bottom: 100px;
}
.bg-image{
height: 1350px;
width: 100%;
background-repeat: no-repeat;
/*overflow: hidden;*/
background-position: center;
margin-bottom: -100px;
}
...
</body>