@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;
  }
}

.topnav {
  border-radius: 25px;
  background: linear-gradient(to right,rgb(82,4,0,1), rgb(82,4,0,0));
  margin: 5px;
  overflow: hidden;
}

.topnav a {
    color: #E0E0E0;
    display: block;
    float: left;
    font-size: 1.1rem;
    padding: 10px 8px;
    text-align: center;
    text-decoration: none;
}

.topnav a:hover {
    color: #AAAC9A;
}

.topnav a.active {
    color: #AAAC9A;
    text-decoration: underline #AAAC9A;
}
  
.topnav .icon {
    display: none;
}