.contact{
        gap: 0px;
    grid-template-columns: 7% 60% auto;
    grid-template-rows: 20% 50% auto;
}

.contact .filler{
    background-color: var(--primary-color);
    border-style: solid;
    border-width: 1px;
    border-color: var(--faded-background-color);
    z-index: 96;
}

.contact .box{
    padding: 24px;
    display: block;

    grid-column: 2/3;
    grid-row: 2/3;
}

.contact .box h1{
    font-size: var(--responsive-large-text-size);
    color: var(--background-color);
    width: 75%;
}

.contact .box p{
    color: var(--accent-color);
    position: absolute;
    bottom: 24px;
}

.footer .box .address{
    position: static;
}

.footer .box .id{
    color: var(--faded-background-color);
}

.bottom{
    grid-column: 2/3;
    grid-row: 3/3;

    display: flex;

    padding: 24px;

    justify-content: center;

    flex-direction: column;
}

.bottom p{
    font-size: var(--responsive-medium-text-size);
    color: var(--faded-background-color);
    padding-top: 24px;
}

.footer .box-nav{
    grid-column: 2/3;
    grid-row: 1/2;

    /* justify-self: center; */

    display: flex;

    /* justify-content: center; */
    /* align-items: center; */

    padding: 24px;
    position: relative;
    z-index: 99;
}

.footer .box-nav img{
    position: static;
    transform: translate(0 , 0);
}

.links{
    grid-column: 3/3;
    grid-row: 2/3;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: flex-end;
    gap: 10%;
    padding: 24px;


}

@media (max-width: 576px) {
    .contact .box p{
        width: 70%;
    }

    .contact .box h1{
        width: auto;
    }
}