footer {
    overflow: hidden;
    display: inline-grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: black;
    width: var(--page-width);
    max-width: 100%;
    padding: 30px 20px 50px 20px;
    margin: 0 auto;
    margin-top: auto;
}

footer p {
    display: inline-block;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    margin: 0;
}

footer p:first-of-type {
    opacity: var(--opacity-1);
}

footer p a {
    color: white !important;
    display: block;
    text-align: right;
    text-decoration: none;
    opacity: var(--opacity-1);
}

footer #social {
	display: inline-flex;
    justify-content: center;
    align-items: center;
}


footer p a:hover,
footer #social a:hover {
    opacity: 1;
}

footer #social a {
	display: inline-block;
	padding: 8px;
    opacity: var(--opacity-1);
}

footer #social a:last-of-type {
    padding-right: 0;
}

footer #social img {
    height: 16px;
    vertical-align: baseline;
}

footer #social img[src*="vimeo"] {
    height: 24px;
}

footer #social img[src*="instagram"] {
    height: 24px;
}

footer #social img[src*="imdb"] {
    height: 17px;
}

footer #social img[src*="letterboxd"] {
    height: 17px;
}

@media screen and (max-width: 750px) {
    footer {
        grid-template-columns: 1fr;
        padding: 25px 20px 45px 20px;
    }

    footer p {
        font-size: .9rem;
        text-align: center;
    }

    footer p a {
        font-size: .9rem;
        display: inline-block;
        text-align: center;
        margin: 0 3px;
    }

    footer #social {
        margin-top: 4px;
    }

    footer #social a {
        padding: 6px;
    }

    footer #social img[src*="vimeo"] {
        height: 20px;
    }
    
    footer #social img[src*="instagram"] {
        height: 20px;
    }
    
    footer #social img[src*="imdb"] {
        height: 15px;
    }
    
    footer #social img[src*="letterboxd"] {
        height: 15px;
    }
}