.header {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.header-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style-type: none;
    align-items: center;
}

.header-links li {
    display: flex;
    align-items: center;
}

.header-links a {
    color: black;
    font-size: 18px;
    white-space: nowrap;
    text-decoration: none;
}

.header-links a:hover {
    color: black;
}

.header-links .logo-link {
    flex: 1;
}

.header-links .logo-link a {
    font-size: 22px;
    color: black;
}

.header-links .settings-link a {
    font-size: 20px;
    margin-right: 20px;
}

.header-links .logout-link button {
    background: none;
    color: #999;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: all.6s ease;
    margin-right: 20px;
}

.header-links .logout-link button:hover {
    color: white;
}