/* Add a black background color to the top navigation */
.topnav {
    /*background-color: #333;*/
    overflow: hidden;
  }
  
  /* Style the links inside the navigation bar */
   a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 5px;
    text-decoration: none;
    font-size: 14px;
  }
  
   /*Change the color of links on hover */
  .topnav a:hover {
    color: #c00925;
  }
  
  /* Add an active class to highlight the current page */
  .active {
    color: #c00925;
  }
  
  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  }

  @media screen and (max-width: 600px) {
    /*.topnav a:not(:first-child) {display: none;}*/
    .topnav a {
      display: none;
    }
    .topnav a.icon {
      float: right;
      display: block;
    }
  }

  @media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    a {
      padding: 5px 5px;
    }
  }