#footer {
    text-align: center;
}
#contact {
    background-image: url("/assets/images/map-image.png");
    background-size: cover;
    background-position:center;
    min-height: 100vh;
    padding-top: 30vh;
    font-size: 1.5rem;
    color: #fff;
    background-color: rgb(65, 65, 65);
}
@media only screen and (max-width: 768px) {
    #contact {
        font-size: 1.2rem;
    }
}
#social-items {
    display: flex;
    justify-content: center;
    list-style: none;
}
#social-items li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: .3em;
    height: 2em;
    width: 2em;
    border-radius: 50%;
}
#social-items li a {
    text-decoration: none;
    color: white;
}
#social-items li:hover {
    background-color: #00a9e2;
}
#copyright {
    font-size: 0.9rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 100%;
    background-color: rgb(71, 71, 71);
    bottom: 0;
}
