* {
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #ff9500 #242424;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #242424;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #ff9500;
    border-radius: 10px;
    border: 3px none #ffffff;
  }

header {
    background-color: #232323;
}

.navbar {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    color: white;

}

.logo {
    padding: 10px 20px;
    margin-right: 20px;
  }
  
  .navbar .logo img {
    height: 5.7rem;
  }

  .brand-title {
    font-size: 1.5rem;
    margin: .5rem;
    display: flex;
    align-items: center;
  }

  .navbar-links ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.7s ease;
  }

  .navbar-links li {
    list-style: none;
  }

  .navbar-links li a {
    text-decoration: none;
    color: white;
    padding: 1rem;
    display: block;
    font-size: 1.8rem;
    transition: 0.7s ease;
  }

  .navbar-links li a:hover {
    color: grey;
  }

  .toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
  }

  .toggle-button .bar {
    height: 3px;
    width: 25px;
    margin: 5px auto;
    background-color: white;
    border-radius: 10px;
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
  }

  @media (max-width: 768px) {
    #search-input {
        width: 100%;
      }

    .toggle-button {
        display: block;
    }

    .toggle-button.active .bar:nth-child(2) {
        opacity: 0;
    }

    .toggle-button.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .toggle-button.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .navbar-links{
       display: none;
       width: 100%;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        transition: 0.3s;
    }

    .navbar-links ul {
        width: 100vh;
        flex-direction: column;
        background-color: #232323;
        transition: 0.3s;
    }

    .navbar-links li {
        text-align: center;
        transition: 0.3s;
    }

    .navbar-links li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }

    .navbar-links .button-container {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        align-content: center;
    }

    .navbar-links .button-container button {
        margin-bottom: 15px;
    }
  }