@media screen and (min-width: 600px) {

  div.menubutton { display: none; }

  .navlist {
    padding: 0.01rem;    /*Abstand der Navigation vom oberen Rand*/
    margin:0 0 0 -2.8em;   /*Abstand der Navigation vom linken Rand*/
    background-color: #fff;
  }

  .navlist li {
    list-style-type: none;
    display: inline-block;
    background-color: #fff;
     padding: 0; /*Abstände nebeneinander*/
  }
  .navlist a {
    display: block;
    min-width: 6.5em;                     /*Achtung geändert*/
    /*background-color: #1E90FF;*/
    background-color: #3566B4;
    color: #fff;
    text-align: center;
    text-decoration: none;
    margin-right: 0px;
    padding: 0.2em;  /*padding innerhalb des Buttons*/
    border-bottom: 3px solid  #1E90FF;
  }
  .navlist a.active {
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border-left: 2px solid  #1E90FF;
    border-bottom: 2px solid  #1E90FF;
    border-right: 2px solid  #1E90FF;

  }
  .navlist a:hover,
  .navlist a:focus

   {
    text-decoration: none;
    background: #fff;
    color: #333;
   border-bottom: 3px solid  #1E90FF;
  }
      
} /* Ende @media */