.navigation-bar {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 6rem;
    border-bottom: 1px solid #1a1a1a;
    background-color: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
    z-index: 99999999999;
}

.navigation {
    display: flex;
    margin-right: 10rem;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.navigation__item:not(:last-child) {
    margin-right: 3rem;
}

.navigation__item--active {
    color: #ff4d5a;
}

.navigation__item:hover {
    color: #ff4d5a;
}

.navigation__item {
    transition: all 0.2s;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}