

.navbar {
    position: fixed;
    display: flex;
    z-index:9999;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    top: 0;
    background: #0f0c0c;
    height: 100px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .nav-items{
    display:flex;
    flex-direction: row;
  }
  
  .nav-links > *{
    color:white;
    font-weight:bold;
    font-size: 1.1rem;
    padding-inline:3rem;
    padding-top: 40px;
    padding-bottom: 39px;
  }
  
  .nav-links > *:hover{
    color:lightgrey;
    background-color:#231c1c;
  }
  
  
  .logo {
    display: inline-block;
    margin-left: 5px;
    width: 100px;
    height: 100px;
  }

  .foot {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #0f0c0c;
    height: max-content;
    text-align: center;
    display:flex;
    flex-direction: column;
  }
  
  .footer-text{
    color:white;
    padding:1rem;
  }

  .copyright{
    color:grey;
    padding: 1rem;
    font-size: 0.7rem;
  }
  
.mb-2{
    margin-bottom: 4px;
}


  @media only screen and (max-width:900px){
    .hamburger-menu{
      display:block;
      margin-left:auto;
      margin-right:1rem;
    }
    
    .navbar{
      padding-right:2rem;
    }

    .nav-items{
      display:none;
    }

    .active{
      display:flex;
      flex-direction: column;
      background-color: rgba(15, 12, 12, 0.99);
      position:absolute;
      left:0;
      top:100px;
      width:100vw;
      height:100vh;
      z-index:1000000;
    }
  
    .active > *{
      text-align: center;
      color:white;
      font-weight:bold;
      font-size: 1.1rem;
      padding: 1rem 3rem;
    }
  
    .active > * :hover{
      background-color: inherit;
    }

    .active > li > a{
      padding: 1rem 5rem;
    }

    .active > :first-child{
      margin-top:2rem;
    }
    
  }