footer {
    display: flex;
    justify-content: center;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin: 60px 50px 0px 50px;
    border-top: 2px solid rgba(20, 20, 20, .1);
    padding: 60px 0px;
    width: 864px; 
}

.footer-desc {
    color: #757472;
    margin: 13px 0px;
    max-width: 290px;
    line-height: 1.5em;
}

.links.footer {
    justify-content: initial;
}

.media {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 28px;
}

.media a {
    color: #757472;
    display: flex;
    font-size: 22px;
}

.footer-links {
    display: flex;
    gap: 70px;
}

.footer-links ul li:not(:nth-child(1)) {
    margin-top: 12.3px;
}

.footer-links ul li:nth-child(1) {
    padding-bottom: 10px;
}

.footer-links ul li a {
    color: #141414;
    transition: 0.3s
}

.footer-links ul li a:hover {
    color: grey;
}

.footer-copyright {
    text-align: center;
    margin-top: 20px;
    padding: 10px 0 20px 0;
    color: #a6a6a6;
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
    box-sizing: border-box;
}

.footer-copyright a {
    color: #757472;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-copyright a:hover {
    color: grey;
}