footer {
    --footer-height: 240px;

    position: relative;
    bottom: 0;
    height: var(--footer-height);
    width: 100%;

    background-color: var(--color-black-0);
    font-family: 'K2D';
    font-size: 20px;
}

footer::selection, footer>*::selection {
    color: var(--color-white-0);
    background-color: var(--color-nopac);
}

footer>div#footer_main_container {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

footer>div#footer_main_container>div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 20px;
    box-sizing: border-box;
}

footer>div#footer_main_container>div:nth-child(2) {
    align-items: flex-end;

    background-color: var(--color-blue);
    width: calc(50% + 130px/2);

    clip-path: polygon(130px 0%, 100% 0%, 100% 100%, 0% 100%);
}

footer>div#footer_main_container>div:nth-child(2)>a:last-child:hover {
    color: var(--color-white-0);
}

footer>img#footer_main_icon {
    position: absolute;

    width: 130px;
    height: auto;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

a,
a:visited {
    color: var(--color-white-0);
    text-decoration: none;
}

a:hover {
    cursor: default;
    color: var(--color-orange);
}