
body{
    font-family: montserrat;
}

nav{
    position: fixed;
    background: #0082e6;
    height: 50px;
    width: 100%;
}


nav label.logo{
    color: white;
    font-size: 35px;
    line-height: 50px;
    padding: 0 100px;
    font-weight: bold;
}

nav ul{
    z-index: 1000;
    list-style: none;
    float: right;
    margin-right: 20px;
}

nav ul li{
    z-index: 1000;
    display: inline-block;
    line-height: 50px;
    margin: 0 5px;
}

nav ul li a{
    color: white;
    text-decoration: none !important;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}

nav ul a.active,nav ul a:hover{
    background: #1b9bff;
    color: greenyellow;
    transition: .5s;
}

nav .checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 50px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }

  nav #check{
    display: none;
  }

  @media (max-width: 1100px){
    nav label.logo{
      font-size: 30px;
      padding-left: 50px;
    }
    nav ul li a{
      font-size: 16px;
    }
  }

  @media (max-width: 985px){
    nav .checkbtn{
      display: block;
    }
    nav ul{
      z-index: 1000;
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #2c3e50;
      top: 50px;
      left: -100%;
      text-align: center;
      transition: left .5s;
    }
    nav ul li{
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }
    nav ul li a{
      font-size: 20px;
    }
    nav a:hover,nav a.active{
      background: none;
      color: greenyellow;
    }
    nav #check:checked ~ ul{
      left: 0;
    }
  }

