.footer-wrapper {
    background-color: #000;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 20px;
    margin-top: 60px;
    border-top: 2px solid #000;
}

.footer-wrapper .footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.footer-wrapper .footer-links a {
    color: #FFF;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.footer-wrapper .footer-links a:hover {
    color: var(--hint-color-extralight);
}


.footer-wrapper #copyright {
    font-size: 12px;
    font-weight: 500;
    color: #FFF;
}


@media screen and (max-width: 650px) {
    .footer-wrapper .footer-links {
        flex-direction: column;
    }
}