footer {
    width: 100%;
    background-color: #1c2436;
    color: #fff;
    padding: 2px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    margin: 0%;

}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.contact-info,
.social-links,
.copyright {
    flex: 1;
    text-align: left;
    padding: 0 10px;
}

.contact-info h3,
.social-links h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 1%;
}

.contact-info p,
.social-links ul,
.copyright {
    color: #ccc;
    font-size: 15px;
    line-height: 1;
}

.copy {
    font-size: 15px;
    padding: 1%;
}

.social-links ul {
    list-style: none;
    padding: 0;
}

.social-links ul li {
    display: inline-block;
    margin-right: 10px;
}

.social-links ul li a img {
    width: 10%;
    height: 10%;
    border-radius: 50%;

}

@media screen and (max-width: 768px) {
    footer {
        width: 100%;
        height: 10rem;
        line-height: 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        line-height: 0;
    }

    .contact-info,
    .social-links,
    .copyright {
        text-align: center;
        margin-bottom: 0px;


    }

    .copy {
        padding: 0;
    }

}