/* SIMEN SKOGEN */

header {
    margin: auto;
    padding: auto;
}  
  
.headernav {
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
}
  .topnav {
    overflow: hidden;
    background-color: rgb(230, 225, 223);
    position: relative;
  }
  
  .topnav #myLinks {
    display: none;
  }
  
  .topnav a {
    color: black;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
  }
  
  .topnav a.icon {
    background: #fff9;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .topnav a:hover {
    background-color: white;
    color: black;
  }
  
  .active {
    background-color: #fff9;
    color: white;
  }

  @media screen and (min-width: 650px) {

    #myLinks{
        display: inline-block;
        padding-left: 10px;
        margin-right: 20px;
      }
      .headernav{
        display: block;
      }
      .topnav a{
        width: initial;
        display:inline-block;
        border: none;
      }
  }