
/* Add a black background color to the top navigation */
.topnav {
background-color: #333;
overflow: hidden;
margin-bottom: 25px;
}

/* Style the links inside the navigation bar */
.topnav a {
float: left;
align-self: center;
/* height: 50px; */
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
background-color: cyan;
color: black;
}
.topnav a.active:hover {
  background-color: #fbfbfb;
  color: rgb(0, 0, 0);
}
    
/* Add a color to the active/current link */
.topnav a.active {
background-color: #e009d9;
color: white;
}

.topnav .right {
  float: right;
}





/* Main div in footer */
.footer-basic {
    padding:40px 0;
    color:#4b4c4d;
}

  /* Copyright section */
.copyright {
  margin-top:15px;
  text-align:center;
  font-size:17px;
  color: magenta;
  margin-bottom:0;
}