I'm working on a project in React and ran into a problem that has me stumped.
I want to add footer component but its not working properly.
so here is my code and i am not able to figure out how to keep footer at bottom of my page when ever i scroll down.
if any one have some solution it will be really great if you help me
when i load my page footer componet look like this at bottom of my page
but when i scroll up then it look like this 
i am wirting this code in different page (footer.jsx) with footer.module.css and calling in my app.js
Footer.jsx
import React from "react";
import footerStyles from "../styles/Footer.module.css";
import { FaTwitter, FaFacebook, FaInstagram } from "react-icons/fa";
function Footer() {
    return (
        <div id={footerStyles.copyright}>
            <p>
                © Team NexT LeVeL. All rights reserved. | Design by Team NexT
                LeVeL
            </p>
            <ul className={footerStyles.contact}>
                <li>
                    <a href="/#">
                        <FaTwitter size="2em" color="cyan" />
                    </a>
                </li>
                <li>
                    <a href="/#">
                        <FaFacebook size="2em" color="#00acee" />
                    </a>
                </li>
                <li>
                    <a href="/#">
                        <FaInstagram size="2em" className={footerStyles.insta} />
                    </a>
                </li>
            </ul>
        </div>
    );
}
export default Footer;
my footer.module.css look like this
#copyright {
    margin: 0;
    width: 100%;
    border-top: 20px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    background: #333333;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex: 0 0 25%;
}
#copyright p {
    display: inline;
    letter-spacing: 1px;
    font-size: 16px;
    color: white;
}
#copyright a {
    text-decoration: none;
    color: white;
}
/*footer icon*/
ul.contact {
    list-style: none;
}
ul.contact li {
    display: inline;
    font-size: 1em;
    padding: 10px;
}
ul.contact li span {
    margin: 20px;
}
ul.contact li a {
    color: white;
}
ul.contact li a:before {
    display: inline;
    background: #4c93b9;
    line-height: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}
.insta {
    border-radius: 10px;
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
}

 
     
    