
/* HEADER */
header {
    position: fixed;
   z-index: 2;
  }
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    padding: 0px 50px;
    background: var(--quaternary-color);
    top: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    height: 8vh;
  }
  
  .navbar .nav-list {
    display: flex;
    list-style: none;
  }
  
  .nav-list ul {
    letter-spacing: 3px;
    margin-left: 32px;
  }
  
  .nav-list a {
      color: #fff;
      text-decoration: none;
      display: flex;
      justify-content: space-around;  
      margin-left:0;
  }
  
  .navbar ul li  {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
  
  }
  .mobile-menu {
    display: none;
    cursor: pointer;
  }
  .mobile-menu div {
    width: 32px;
    height: 2px;
    background: var(--primary-color);
    margin: 8px;
    transition: 0.3s;
  }
  .start-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
  }