.footer {
    width: 100%;
    min-height: 10rem;
    backdrop-filter: blur(2rem);



    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;

    justify-content: center;



    backdrop-filter: blur(1.5rem);
    background: rgba(255, 255, 255, 0.032);

    padding: 4rem var(--page-padding);


}

.footer h3 {
    background: linear-gradient(180deg, rgb(255, 255, 255), rgb(202, 202, 202) 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.postfooter {
    backdrop-filter: blur(1.5rem);
    background: rgba(255, 255, 255, 0.032);
}

.footer a {
    cursor: pointer;
}


.footer div {
    width: max-content;
    justify-self: center;
}

.final img {
    opacity: .5;
    height: 3rem;
}

.final::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 70%);
}

@media screen and (max-width: 768px) {
    .footer {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        row-gap: 3rem;
        padding: 2rem var(--page-padding);
    }

    .footer div {
        justify-self: start;
    }
}