#navbar {
    position: fixed;
    left: 50%;
    top: 20px;

    transform: translateX(-50%);

    background-color: rgba(38, 40, 51, 0.4);
    width: 915px;
    /* min-width: 700px;
    max-width: 100%; */
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.navbar__item {
    /* border: 1px solid red; */
    padding: 10px;
    position: relative;
    cursor: pointer;
}

.navbar__item--text {
    font-family: 'RoadRadio';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 10px;
    display: flex;
    align-items: center;
    text-align: center;

    position: relative;
    top: 1px;

    color: #B7B7B7;
}

.navbar__item--lt {
    position: absolute;
    left: 0;
    top: -4px;
}
.navbar__item--lb {
    position: absolute;
    left: 0;
    bottom: 0;
}
.navbar__item--rb {
    position: absolute;
    right: 0;
    bottom: 0;
}
.navbar__item--rt {
    position: absolute;
    right: 0;
    top: -4px;
}