footer {
    background-color: black !important;
    color: white !important;
}

#footer-container {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    
}

.footer-logo {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.footer-logo svg {
    transform: scale(1.5);
}

.footer-contact {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.footer-contact-items {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    height: 40px;
}

.footer-contact-items a {
    text-decoration: none;
    color: white;
    margin-left: 15px;
}

.footer-contact-items a:hover {
    color: #ffd500;
    cursor: pointer;
}

.footer-contact-items i {
    color: #ffd500;
    transform: scale(1.2);
}

.footer-social-icons {
    width: 100%;
    align-items: center;
    margin-top: 20px;
}

@media only screen and (min-width: 768px) {
    #footer-container {
        display: flex;
        flex-flow: row nowrap;
        width: 100%;
        justify-content: space-around;
        padding-top: 20px;
    }
    
    .footer-logo {
        width: 30%;
    }
    
    .footer-logo svg {
        transform: scale(1.5);
    }
    
    .footer-contact {
        width: 30%;
    }
    
    .footer-contact-items {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        height: 40px;
    }
    
    .footer-social-icons {
        width: 20%;
        margin-top: 0;
    }
}