.footer {
    /* Create a Flex Box */
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    /* Add the required colors */
    background-color: var(--header-background-color);
    color: var(--header-text-color);

    /* Fix */
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer > button {
    /* margin: 10px; */
    background-color: transparent;
    border-color: transparent;
    color: var(--header-text-color);

    cursor: pointer;
}

.footer > * {
    margin-left: 1em;
    margin-right: 1em;
}
