footer{
    padding: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}
.footer-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-nav-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.footer-link{
    text-decoration: none;
    font-size: xx-large;
    color: grey;
    transition: color ease-in-out 0.25s;
}
.footer-link:hover{
    color: rgb(88, 88, 88);
}
.copyright{
    color: grey;
}