footer {
    display: flex;
    align-items: center;
    background-color: var(--dark-grey);
    min-height: 80px;
    font-size: 14px;
    font-weight: lighter;
    gap: 20px;
    padding-left: 5vw;
    padding-right: 5vw;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.footer-container div{
    margin: 5px;
}

.link {
    transition: all 0.2s ease-in-out;
}

.link:hover {
    color: var(--main-color);
}

@media screen and (max-width: 800px){
    footer {
        justify-content: center;
    }
}