.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #2365dc;
    padding: 10px;
}

.navbar__right{
    display: flex;
}

.navbar__right a {
    text-decoration: none;
    font-size: 18px;
    margin-right: 10px;
    color: white;
    transition: all 100ms;
}

.navbar__right a:hover {
    text-decoration: none;
    font-weight: bold;
    color: lightblue;
}