html{
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #282c35;
  color: white;
}
.brand-title {
  font-size: 1.5rem;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  margin: 0.5rem;
}
.navbar-links ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.navbar-links li {
  list-style: none;
  border-radius: 10px;
}
.navbar-links li a {
  text-decoration: none;
  color: white;
  padding: 1rem;
  display: block;
  height: 50px;
  transition-timing-function: ease-in-out;
}
.navbar-links li a:hover {
  border-bottom: 2px solid #d50e2b;
}
.toggle-button {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}
.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
}

.signup-btn,
.login-btn {
  text-align: center;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  margin: auto;
  box-shadow: 0 0 0 0 rgba(red, green, blue, alpha);
  height: 35px;
  width: 70px;
  padding: 5px 0px;
  margin-right: 5px;
  border-radius: 5px;
  background-color: black;
}
.signup-btn:hover,
.login-btn:hover {
  border: 1px solid white;
  background-color: #282c35;
  color: #d50e2b;
  text-decoration: none;
}
.logout-btn {
  text-align: center;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  margin: auto;
  box-shadow: 0 0 0 0 rgba(red, green, blue, alpha);
  height: 35px;
  width: 70px;
  padding: 5px 0px;
  margin-right: 5px;
  border-radius: 5px;
  background-color: #d50e2b;
}
.logout-btn:hover {
  border: 1px solid white;
  background-color: #282c35;
  color: #d50e2b;
  text-decoration: none;
}

@media (max-width: 500px) {
  .toggle-button {
    display: flex;
  }
  .navbar-links {
    display: none;
    width: 100%;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar-links ul {
    width: 100%;
    flex-direction: column;
  }
  .navbar-links li {
    text-align: center;
  }
  .navbar-links li a {
    padding: 0.5rem 1rem;
  }
  .navbar-links.active {
    display: flex;
  }
  .signup-btn,
  .login-btn {
    text-align: center;
    padding: 0.5rem 1rem;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .toggle-button {
    display: flex;
  }
  .navbar-links {
    display: none;
    width: 100%;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar-links ul {
    width: 100%;
    flex-direction: column;
  }
  .navbar-links li {
    text-align: center;
  }
  .navbar-links li a {
    padding: 0.5rem 1rem;
  }
  .navbar-links.active {
    display: flex;
  }
  .signup-btn,
  .login-btn {
    text-align: center;
    padding: 0.5rem 1rem;
    width: 100%;
  }
}
