

@import url('https://fonts.googleapis.com/css?family=Work+Sans:400,600');
body {

    margin: 0;
 
	  font-weight: 800;

}


.navContainer {

    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    

}

header::after {
    content:'';
    display: table;
    clear: both;
}

header {
    height: fit-content;
    position: fixed;
    top:0;
    width: 100vw;
    z-index: 1;
    background: hsl(0, 0%, 95%);
    display: flex;
    align-items: center;
    padding: 20px 0px;
    border-color:hsl(0, 0%, 87%);
    border-width:0 0 1px 0;
    border-style:solid;
}

nav {
    width: 100%;
    position: center; 
    height: fit-content;
    /*right: 100px;*/
    display: flex;
    justify-content: center;
    
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
  
}

nav li {
    display: inline-block;
    margin-left: 15px;
    position: relative;
    height: 33px;
    display: flex;
    align-items: center;
    border: 2px #3399ff solid;
    border-radius: 33px;
    padding: 2px 20px;
    background-color: #3399ff;
    transition: background-color .1s linear;
    
    
    
}

nav li:hover {

  background-color: transparent;

}

nav a {
    height: 33px;
    text-decoration: none;
    font-size: calc(.3vw + 10px);
    font-family: 'Work Sans', sans-serif;
    display: flex;
    position: relative;
    color: white;
    align-items: center;
    border: 2px #3399ff solid;
    border-radius: 33px;
    padding: 2px 20px;
    background-color: #3399ff;
    transition: background-color .1s linear;
    margin-left: 15px;

}

nav li:hover > a {
  
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    display: flex;
    color: #3399ff;
  }

 
  

  /*
nav a::before {
    content: '';
    display: block;
    height: 5px;
    background-color: #444;
  
    position: absolute;
    bottom: 0;
    width: 0%;
  
    transition: all ease-in-out 250ms;
    
  }

  */
  
  nav a:hover::before {
    width: 100%;
  }


  .logo {
    position: absolute;
    height: 82px;
    left: 10px;
  }
  #main-logo {
    content: url("../images/ibl-logo.png");
  }
  @media screen and (max-width: 900px) {
    #main-logo{
      content: url("../images/iButtonLink\ Globe.png");
    }
  }


  