My Web footer i made is supposed to show when you get to the bottom of the page, but stays on the bottom of the screen taking up half the screen.
My react website isn't working as intended. I have made a footer with links on the bottom of my page, but i wanted it to only show when you scroll down to the bottom of the page, not stay on the bottom always.
It is a lot of code so here is the Git Repository of the code so far: https://github.com/CodingWithTonyB/React-Web
I beleive the box position has to do with this code:
export const Box = styled.div`
padding: 80px 60px;
background: black;
position: fixed;
bottom: 0;
width: 100%;