@media(min-width:768px) {
    footer{
        width: 100%;
    }
    .footer-container{
        margin: 0 auto;
        max-width: 1280px;
        height: 70px;
        padding: 0px 40px;
        display: flex;
        align-items: center;
    }
    .footer-container span{
        font-family: 'Bebas Neue', sans-serif;
        font-size: 20px;
        font-weight: 400;
    }
}

@media(min-width:320px) and (max-width:767px){
    footer{
        width: 100%;
    }
    .footer-container{
        margin: 0 auto;
        max-width: 1280px;
        height: clamp(3.75rem, 3.3026rem + 2.2371vw, 4.375rem);
        padding: 0px clamp(1.25rem, 0.3551rem + 4.4743vw, 2.5rem);
        display: flex;
        align-items: center;
    }
    .footer-container p{
        font-size: clamp(0.75rem, 0.571rem + 0.8949vw, 1rem);
    }
    .footer-container span{
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(1rem, 0.821rem + 0.8949vw, 1.25rem);
        font-weight: 400;
    }
}