footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
}
.footer_text{
    padding: 20px ;
}
.text_link{
    color: white;
    text-decoration: none;
}
.text_link:hover{
    color: var(--main-brand-color);
}
@media(max-width:800px){
    footer{
        text-align: center;
        font-size: 3vw;
    }
}