.top-bar {
    width: 100%;
    min-height: 4rem;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03125);
    border-bottom: solid 1px;
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3;
}

.navigation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: transparent;
    height: 100%;
    width: 100%;
}

.navigation-button {
    color: #bfbfbf;
    font-weight: 600;
    background: transparent;
    font-size: 1.25rem;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.125s ease;
}

.navigation-button:hover,
.navigation-button.active {
    color: white;
}

.top-bar-title {
    position: fixed;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    left: 2rem;
}