nav li {
    list-style: none;
    display: inline-block
}

nav li:not(:first-child) {
    margin-left: 10px
}

nav li, nav a {
    text-decoration: none;
    color: cornflowerblue;
}

nav li:hover,nav a:hover{
    color: blue;
}


nav .active {
    color: forestgreen
}

nav .active:hover {
    color: green;
}

nav .nav-content {
    display: none;
    position: fixed;
    z-index: 9;
    background: #ffffff;
}

nav .nav-title:not(.default) {
    cursor: pointer;
}

nav .nav-title:hover ~ .nav-content, nav .nav-content:hover {
    display: block;
}