@import url('https://fonts.googleapis.com/css2?family=Libertinus+Sans:ital,wght@0,400;0,700;1,400&display=swap');

footer{
    width: 100%;
    background: #eca202;
    position: relative;
    margin-top: 20px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Libertinus Sans", sans-serif;
}
footer span, footer a{
    padding: 10px;
    text-decoration: none;
    color: black;
}
footer a:hover{
    text-decoration: underline;
}
@media (max-width: 960px){
    footer{
        flex-direction: column;
        padding: 5px 0;
        height: 80px;
        bottom: 0;
    }
    footer span, footer a{
        padding: 5px;
        text-align: center;
        font-size: 10px;
        text-decoration: none;
    }
    footer a:hover{
        text-decoration: underline;
    }
}
@media (max-width: 600px){
    footer{position: relative;}
}