.nav__bar{
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: white;
    border: 1px solid black;

    width: 50%;
    z-index: 999;
}

.nav__bar__link {
    display: flex;
    padding: 16px 28px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #151515;
    text-decoration: none;
}

.nav__bar__link:last-child {
    border-right: none;
}

.nav__bar__link.active {
    color: #8B0000;
}

