footer {
    width: 100%;
    height: 6vh;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    background-color: var(--background-color);
    font-size: 17px;
    font-weight: normal;
}

footer span {
    margin: 0 4%;
    width: 50%;
}

footer ul {
    display: flex;
    justify-content: right;
    padding: 0px;
    width: 50%;
}

footer li {
    display: flex;
    margin: 0 4%;
}

footer li a {
    text-decoration: none;
}

footer li a:hover {
    color: var(--primary-text-color);
}

@media(max-width: 575px) {
    footer {
        display: block;
        text-align: center;
        max-height: min-content;
        padding-bottom: 1vh;
    }

    footer ul {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    footer li {
        margin: 0 3%;
        margin-bottom: 5px;
    }
}

@media(max-width: 300px) {
    footer {
        max-height: min-content;
    }
}