footer {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: white;
    width: var(--page-width);
    max-width: 100%;
    padding: 30px 20px;
    margin: 0 auto;
    margin-top: auto;
}

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

footer p a {
    color: black !important;
    opacity: var(--opacity-1);
    display: inline-block;
}

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*="imdb"] {
    height: auto;
    width: 33px;
}

@media screen and (max-width: 550px) {
    footer {
        padding: 40px 15px 30px 15px;
    }

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

    footer p a {
        display: block;
    }

    footer p span {
        display: none;
    }

    footer #social a {
        padding: 6px;
    }
}