nav{

    justify-content: space-around;
    align-items: center;
    min-height: 4vh;
    background-color: #232730;    
    font-family: 'Roboto Slab', sans-serif;
    position: fixed;
    width: 100%;

}

.logo{
    letter-spacing: 5px;
}
.logo img{
    width: 20rem;
    height: 3rem;
    margin-top: 3%;
    columns: black;
}
.ikoner{
 width: 18px;
 height: 18px;
 opacity: 0;



}
/*
NAV LINKS?
  padding: 0px;
  margin: 0px;
  text-align: center;
  display:inline-block;
  vertical-align:top;
  */
.nav-links{
    display: flex;
    justify-content: space-around;
    width: 80%;
    z-index: 10;
    
}
.nav-links li{
    list-style: none;
}
.nav-links a{
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 20px;
    color: rgb(255, 255, 255);
}

.burger{
    display: none;
    cursor: pointer;
}
.burger div{
    width: 25px;
    height: 5px;
    background-color: aliceblue;
    margin: 5%;
    transition: all 0.3s ease;
}
.mobil{
    display: none;
}


@media screen and (max-width: 1300px){
    body{
        overflow-x: hidden;
        cursor: pointer;
    }
    .nav-links{
        position: absolute;
        right: 0px;
        height:  92vh;
        top: 8vh;
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        background-color: #232730;
        overflow: hidden;

        margin-top: 0%;
        
    }

    .burger{
        display: block;
    }
    .nav-links a{
        color: aliceblue;
    }
    .nav-links li{
        opacity: 0;
    }
    .ikoner{
        opacity: 1;
        color: aliceblue;
        color-scheme: aliceblue;
       
       }
    .mobil{
        display: flex;
        text-align: center;
    }

}

.nav-active{
    transform: translateX(0%);
    display: flex;
}

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
        display: none;
        
    }
    to{
        opacity: 1;
        tranform: translateX(0px);
        display: block;
    }
}
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,4px);

}

.toggle .line2{
    opacity: 0;
}

.toggle .line3{
    transform: rotate(45deg) translate(-5px,-4px); 
}


#merke{
    color: rgb(0, 238, 255);
}

@media screen and (min-width: 1300px){
    #desktop{
display: none;    
}

}
@media screen and (max-width: 500px){
    .logo{
        letter-spacing: 5px;
        max-width: 80%;
    }
    .logo img{
        width: 15rem;
        height: 3rem;
        margin-top: 3%;
    }    
}

@media screen and (max-width: 350px){
    .logo{
        letter-spacing: 5px;
        max-width: 80%;
    }
    .logo img{
        width: 12rem;
        height: 3rem;
        margin-top: 3%;
    }    
}

#Logo{
    margin-top: 0px;
}
/* Style the navbar */
#navbar {
    overflow: hidden;
    background-color: #333;
  }
  
  /* Navbar links */
  #navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px;
    text-decoration: none;
  }
  
  /* Page content */
  .content {
    padding: 16px;
  }
  
  /* The sticky class is added to the navbar with JS when it reaches its scroll position */
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  /* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
  .sticky + .content {
    padding-top: 60px;
  }