@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400&display=swap');

/* Add a black background color to the top navigation */
.topnav {
    background-color: #081336;
    overflow: hidden;
    opacity: 0.88;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Quicksand', sans-serif;
}
  
/* Add a color to the active/current link */
.topnav a.active {
    background-color: #081336;
    font-weight: bold;
    color: white;
}
/* Change the color of links on hover */
.topnav a:hover {
    background-color: #07102e;
}
  