.navbar {
    width: 100%;
    z-index: 1;
    overflow: hidden;
    position: fixed;
}

.navbar a {
    float: left;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.navbar a:hover {
    background-color: #b7b7b7;
    color: black;
}

.navbar a.active {
    background-color: #545454;
    color: white;
}

.logout-button {
    position: absolute;
    right: 0;
    height: 100%;
    width: 100px;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.logout-button:hover {
    background-color: #545454;
}

.name-container {
    position: absolute;
    right: 100px;
    height: 100%;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}