footer {
    width: 100%;
    padding: 10px;
    background-color: var( --color-dark );
    text-align: right;
    position: fixed;
    bottom: 0;
    /*inprogress*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer > .inprogress {
    font-size: 1.2rem;
    color: var( --color-light );
}

footer > a {
    display: block;
    font-size: 1.2rem;
    color: var( --color-light );
    text-decoration: none;
}

@media screen and ( max-width: 1000px ) {
    footer {
        flex-direction: column;
        position: static;
        gap: 2rem;
    }

    footer > .inprogress {
        text-wrap: wrap;
    }
}