.footer {
    position: absolute;
    left: 0;
    display: flex;
    background: #212121;
    flex-direction: row;
    gap: 10vw;
    color: #fff;
    padding: 2vh 2vh;
    cursor: default;
    z-index: 10;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: -1vh;
}

.footer>.footer-center,
.footer>.footer-right,
.footer>.footer-left {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 0.5vh;
}

.footer>.footer-left {
    align-items: start;
}

.footer>.footer-center {
    align-items: center;
}

.footer>.footer-right {
    align-items: end;
}

.footer>*>.heading {
    font-size: 15px;
    font-weight: 900;
}

.footer>*>.content {
    font-size: 12px;
    font-weight: 100;
    cursor: pointer;
}