footer .footer-content {
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 12vh;
    background: #0e0e0e;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

footer .footer-content p, footer .footer-content a {
    color: #ffffff75;
}

footer .footer-content a {
    text-decoration: none;
}

footer .footer-content p svg {
    width: 5vw;
    color: white;
}

footer .footer-content img {
    width: .8vw;
    margin: 0 5px;
}

footer .footer-content .links {
    width: 25vw;
    display: flex;
    justify-content: space-around;
}

@media screen and (max-width: 1000px) {
    footer .footer-content {
        display: block;
        height: unset;
        padding-bottom: 5vh;
    }

    footer .footer-content .links {
        width: 100%;
    }
    
    footer .footer-content p {
        padding: 5vh 0;
        text-align: center;
    }

    footer .footer-content p img {
        width: 2.75vw;
    }
}