/* Add a black background color to the top navigation */
.Navbar {
    background-color: palevioletred;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.Navbar a {
    float: left;
    color: #faf9f7;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
}

/* Change the color of links on hover */
.Navbar a:hover, .Navbar a.active:hover {
    background-color: rgb(214, 48, 103) !important;
    color: #fff !important;
}

/* Add a color to the active/current link */
.Navbar a.active {
    background-color: rgb(214, 48, 103) !important;
    color: #faf9f7;
}