#footer {
    background-color: black;
    height: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#footer-links {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    max-width: 70%;
    line-height: 38px;
    flex-wrap: wrap;
    gap: 12px
}
a.footer-link{
    color: white
}
#footer-social-media{
    display: flex;
    width: 100%;
    gap: 15px;
    max-width: 360px;
    margin-top: 20px;
}

#footer-social-media p{color: white;
    font-size: 22px;
/* width: fit-content; */
/*    flex-shrink: 0;*/
    margin: 0;}

#social-media-footer-links{
    display: flex
;
    /* margin-left: 20px; */
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

@media(max-width: 768px){
    #footer-social-media{
        flex-direction: column;
        max-width: 100%;
        justify-content: center;
        align-items: center;
    }

    #footer-social-media p{
        text-align: center;
    }

    #social-media-footer-links{
        max-width: 320px;
    }
    }