/* No background color for the top navigation */
.topnav {
    background-color: transparent;
    overflow: hidden;
}

/* Links style inside the navigation bar */
.topnav a {
    float: left;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* On hover link */
.topnav a:hover {
    background-color: transparent;
    color: #ff7373;
}

/* Active/current link style */
.topnav a.active {
    background-color: transparent;
    color: #ff7373;
    text-decoration: none;
}