footer
{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 20px;
    margin: 0;
}
footer > p
{
    width: 100%;
    text-align: center;
}
footer .main
{
    margin: 35px 0;
    display: flex;
    flex-direction: row;
    width: 100%;
}
footer .main .half
{
    display: flex;
    width: 50%;
    gap: 5px;
}
footer .main .half:nth-child(1)
{
    flex-direction: row;
    justify-content: center;
}
footer .main .half:nth-child(2)
{
    flex-direction: column;
    align-items: center;
}
footer .main .left, footer .main .right
{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
footer .main .right
{
    margin-left: 20px;
}

footer .bottom
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    font-size: 12px;
}

.nav-black footer a
{
    color: black;
}

@media screen and (max-width: 750px) { 
    footer
    {
        padding: 10px 0;
    }
    
    footer .main
    {
        flex-direction: column-reverse;
        gap: 20px;
    }
    
    footer .main .half
    {
        width: 100%;
    }
}