*{
  padding: 0;
  margin: 0;
  text-transform: none;
  list-style: none;
  font-size: 62.5%;
}
body{
  font-family:montserrat ;
}

nav{
  height: 8.7rem;
  width: 100%;
  background: #34495e;
}

label.logo{
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  padding: 0 7rem;
  line-height: 8rem;

}

nav ul{
  float: right;
  margin: 2rem;
}

nav li{
  display: inline-block;
  margin: 0 .5rem;
  line-height: 5rem;

}
nav a{
  color: white;
  font-size: 1.8rem;
  text-transform: uppercase;
  border: .1rem solid transparent;
  padding: .7rem 1rem;
  border-radius: .3rem;
  text-decoration: none;

}
a:hover{
  border: .1rem solid white;
  transition: .5s;
  cursor: pointer;
}

nav #icon{
  color: white;
  font-size: 3rem;
  line-height: 3rem;
  float: right;
  margin-right: 2rem;
  cursor: pointer;
  display: none;
}

@media (max-width:1048px){
  label.logo{
    font-size: 3.2rem;
    padding-left: 6rem;

  }
  nav ul{
    margin-right: 2rem;

  }
  nav a{
    font-size: 1rem;

  }
}

@media (max-width:909px){
  nav #icon{
    display: block;
    padding-top: 1.7%;
  }
  nav ul{
     position: fixed;
     width: 100%;
     height: 100vh;
     background: #2f3640;
     top: 6rem;
     left: -120%;
     text-align: center;
     transition: all .5s;
     cursor: pointer;
  }
  nav li{
    display: block;
    margin: 5rem 0;
    line-height: 3rem;  
  }
  nav a{
    font-size: 2rem;
  }
  
  nav ul.show{
    left: -4%;
   
  }
}
#title{
  
  border: none;
}
