/* Footer */
#footer {
    width: 100%;
    box-sizing: border-box;
}
footer p {
    margin: 0;
}
footer a {
    color: white;
}
footer a:hover {
    color: white;
    font-weight: bolder;
}
#footer-contacts{
    background: #1a1a1a;
    color: white;
}
#footer-contacts a {
    color: white;
}
#footer-contacts a:hover {
    color: dodgerblue;
    transition: 0.2s;
}
#footer-copyright{
    background: #313131;
    color: white;
}
#footer-copyright {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
    padding: 1rem;
}
#footer-contacts{
    display: flex;
    align-items: center;
    justify-content: center; /* was space-between */
    padding: 2rem 2rem;
}
.fa-instagram, .fa-facebook-f, .fa-envelope {
    margin: .7rem;
    font-size: 1.8rem;
}
@media screen and (min-width: 620px){
    #footer-contacts{
        padding: 2rem 8rem;
    }
    #footer-copyright {
        font-size: 1rem;
    }
}