footer {
    background-color: #969696;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: sticky;
    bottom: 0;
    width: 100%;
    max-width: 1100px;
    margin: auto;
    max-height: 50px;
    z-index: 1;
    overflow: hidden; 
    padding: 10px 20px; 
}

footer a {
    text-decoration: none;
    color: white;
    cursor: pointer;
    font-size: 10px;
    margin-right: 10px; 
    margin:15px;
}


@media (max-width: 1024px) { 
    footer {
        max-width: 700px;
    }
    
    footer a {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    footer {
        max-width: 77%;
    }
    
    footer a {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    footer {
        max-width: 75%;
    }
    
    footer a {
        font-size: 8px;
    }
}