* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.porchfest-title a {
  color: white;
  text-decoration: none;
}
.navbar {
  border-radius: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 2%;
  background-color: rgba(0, 0, 0, 0.808);
}

.porchfest-title {
  font-size: 1.5rem;
  margin: .5rem;
}
.navbar-links ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.navbar-links li { 
  margin-top: 10px;
  padding: 0px 35px;
  list-style: none;
}
.navbar-links li a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
  color: white;
  display: block;
  transition: all 0.3s ease 0s;
}
.navbar-links li a:hover {
  color: #d3d3d3;
}
.toggle-button {
  position: absolute;
  top: 1rem;
  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;
}

@media (max-width: 1000px) {
  .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: 1.5rem 1rem;
  }
  .navbar-links.active {
    display: flex;
  }
}

.login {
  margin-top: -10px;
  width: auto;
  background: #0088a9;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  letter-spacing: .5px;
  text-decoration: none;
}

.login:hover {
  background-color: rgb(0, 136, 169,0.8);
}