footer{
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    padding-top: 10px;
    background-color: var(--light-yellow-color);
}

footer ul{
    display: flex;
    flex-direction: row;
    list-style:none ;
    align-items: center;
    justify-content: center;
    padding: 0;
}
footer li{
    margin: 0.5rem 0.5rem;
    list-style:none;
}
footer a{
    color: var(--brown-color);
}
#footer-socials{
    width: 75%;
}

#footer-socials a{
    font-size: large;
}

#footer-socials .tiktok {
    scale: 2.5;
}
#footer-socials .youtube {
    scale: 2.8;
}

#footer-socials .instagram {
    scale: 1.8;
}

#footer-socials .facebook {
    scale: 2.5;
}

#footer-socials .threads {
    scale:3;
}
#footer-socials .privacy-policy {
    font-family: "Courier Prime", monospace;
          flex-basis: 33.33%; 

}
footer a:hover{
    transition: all 200ms;
}

footer a:not(:hover){
    color: var();
    transition: all 200ms;
}

.footer-text{
    color: var(--brown-color);
    font-weight: bold;
    font-size: small;
    flex-basis: 33.33%; 
        text-align: end;

}

.footer-logos-wrapper{
    display: flex;
    flex-direction: row;
    flex-basis: 33.33%; 
    align-items: center;
    justify-content: center;


}
@media only screen and (max-width: 600px) {
    footer{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer-text{
        width: fit-content;
    }

        .privacy-policy{
        width: fit-content;
    }
    footer li{
        margin: 0rem;
        list-style:none;
        width: 3.2rem
    ;
    }
    #footer-socials{
        width: fit-content;
        flex-direction: column;
        flex-wrap: wrap;
        flex: 0 0 50%;
        margin-right: 0;
    }
    #footer-socials a{
        font-size: medium;
    }

    .footer-text{
    font-size: smaller;

    margin-bottom: 1rem;

    }

    .footer-logos-wrapper{

        margin-bottom: 1rem;
    }

}