.topnav {
    overflow: hidden;
    background-image: linear-gradient(#000000, #00000000);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .topnav a {
    float: right;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 25px 25px;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Montserrat Light', sans-serif;
  }
  
  .topnav a:hover {
    font-weight:bolder;
  }
  
  .topnav a.active {
    color: #FFA800;
    font-family: 'Jiwaku Menanti';
    float: left;
    font-size: 42px;
  }
  
  .topnav .icon {
    display: none;
  }
  
  @media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }