.page-footer {
    width: 100vw;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
}


.page-footer .footer-container {
    width: 80%;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-footer .footer-container .footer-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.page-footer .footer-container .footer-grid-container .footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.page-footer .footer-container .footer-grid-container .footer-column a {
    display: block;
    padding: 5px;
    color: black;
}



@media screen and (max-width: 800px) {

    .page-footer .footer-container{
        width: 100%;
    }

    .page-footer .footer-container .footer-grid-container {
        grid-template-columns: 1fr;
    }

}
