@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500&display=swap');
.navbar{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #0F1F2E;
  padding: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}
.navbar a{
  text-decoration: none;
  color: #fff;
}
.logo{
  margin-left: 30px;
  font-weight: 500;
}
.list{
  list-style: none;
  display: flex;
  gap:30px;
  color: #fff;
  margin-right: 30px;
}

#toggler,.navbar label{
  color: #ffffff;
  display: none;
}

@media screen and
(max-width: 600px){
  .menu{
    width: 100%;
    max-height: 0;
    overflow: hidden;
  }
  .logo{
    margin-left: 0px;
  }
  .list{
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  .navbar label{
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }
  #toggler:checked ~ .menu{
    max-height: 100%;
  }
}
