
.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:rgba(37,42,52, 1);
    height: 15vh;
  
}

.footer-text-container {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid red; */
}

.footer-text {
    margin: 0px;
    color: white;
    font-size: 1.5em;
}

.social-links-footer-container {
   display: none;
}

.social-iconss {
    font-size: 1.5em;
    color: white;
    padding: 8px;
}


@media(max-width: 768px){

    .footer-container {
        justify-content: space-between;
    }
    .footer-text {
        font-size: 1em;
    }
    .social-links-footer-container {
        /* border: 1px solid yellow; */
        display: flex;
        flex: 1;
        justify-content: center;
        align-items: center;
    

    }
    
}

@media(max-width: 576px)
{
    .footer-container {
        flex-direction: column;
    }
    .social-links-footer-container {
        margin-bottom: 20px;
    }
}

@media(max-width: 400px)
{
    .footer-text {
        font-size: .8em;
    }

}



