body {
    padding-bottom: var(--footer-height);
}

.footer {
    position: fixed;
    bottom: 0;
    z-index: 1;

    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-main);

    height: var(--footer-height);
    width: 100%;
}

.footer .footer__menu {
    display: flex;
    align-items: center;

    padding: 0 0.5em;
}

.footer .footer__menu a {
    text-decoration: none;
    padding: 0.5em;
    color: var(--color-second);
}

.footer__copyright {
    padding: 0 1em;
    color: var(--color-second);
}


@media screen and (max-width: 54em) {
    .footer .footer__menu {
        display: none;
    }
}