footer {
    display: flex;
    flex-direction: column;
    background-color: #e9e9e9;
    border-top: solid 0.1rem #c80000;
    padding: 0.8rem;
    font-size: 0.8rem;
    text-align: center;
}

footer p {
    margin: 0 0.5rem;
}

footer span {
    font-weight: 500;
}

footer .contact-container {
    display: flex;
    flex-direction: column;
}

footer > .contact-container > a {
    color: #767676;
    display: flex;
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
}

footer svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke: none;
    fill: #767676;
}

.footer-social-media {
    display: flex;
    width: 100%;
    justify-content: center;
}

.footer-social-media > a {
    padding: 1.2rem 1rem;
}

.footer-social-media > a > svg {
    width: 1.5rem;
    height: 1.5rem;
}

footer .work-hours-container {
    padding: 0.8rem 0;
}

#copyright {
    font-size: 0.7rem;
    padding: 2rem 0;
}

#copyright svg {
    width: 2rem;
    margin-top: 0.5rem;
}

@media screen and (min-width: 1080px) {

    .contact-container, .work-hours-container {
        font-size: 1rem;
    }

    footer .contact-container {
        flex-direction: row;
        justify-content: center;
        margin: auto;
        width: 80%;
    }

    footer .contact-container > a {
        width: 25%;
    }

    .work-hours-container {
        width: 100%;
        margin-top: 1rem;
    }

    #copyright {
        width: 100%;
    }
}