*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.footer{
    background-color: hsl(0, 0%, 67%);
    color: white;
    /* display: grid; */
    /* justify-content: space-around; */
    /* align-items: center; */
}

.footer > .footer-list{
    padding: 0px 35px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}


.footer > .footer-list > .list-item{
    display: inline-block;
    padding: 20px 15px 10px 15px;
}

.footer a{
    font-family: 'Rubik', sans-serif;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer > .footer-list a:hover{
    filter: brightness(60%);
    font-weight: 500;
}

.footer > .social-media-icons-wrapper{
    padding: 10px 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer > .social-media-icons-wrapper a{
    font-size: 1.3em;
    transition: 0.5s;
    color: white;
}

.footer > .social-media-icons-wrapper a:hover{
    filter: brightness(60%);
}

.footer > .copyright-wrapper{
    padding: 10px 20px 20px 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
} 

@media all and (max-width: 980px){
    .footer{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .footer > .footer-list{
        text-align: center;
    }

    .footer > .copyright-wrapper{
        text-align: center;
    } 

}