header {
  width: 100%;
  z-index: 3;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
}

#navbar-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding-left: 2%;
  padding-right: 2%;
  height: 70px;
  background-color: var(--color-2);
  padding: 1%;
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.5);
}

#logo {
  width: 50px !important;
  height: 50px !important;
  margin-left: 10px;
  transition: 0.3s;
}

.navbar ul {
  display: flex;
  justify-content: space-around;
  width: 100%;
  align-items: center;
}

.navbar li {
  list-style: none;
}

.navbar button {
  font-family: "Starjedi", sans-serif;
  font-size: 20px;
  background-color: transparent;
  border: none;
  transition: 0.3s;
}

.navbar button:hover {
  font-size: 22px;
  transition: 0.3s;
}

.navbar a {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  color: var(--color-3);
}

.extend {
  display: none;
}

#close {
  display: none;
  color: var(--color-3);
  margin-left: 20px;
}

@media only screen and (max-width: 1140px) {
  .navbar {
    flex-direction: column;
  }
  .navbar ul {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .extend {
    display: flex;
    align-items: center;
    color: var(--color-3);
  }

  #close {
    display: none;
    padding: 0 10px 0 0;
  }

  #navbar-container {
	  height: 80px;
  }
}