header a {
  text-decoration: none;
}

header {
max-width:1600px;
margin: auto;
  padding-bottom: 20px;
  background-color: none;
  height: 46px;
  display: flex;
  justify-content: left;
}
@media (min-width: 768px) {
  header { justify-content: center;}
  }
@media (min-width: 1200px) {
  header { justify-content: center;}
  }
@media screen and (max-width:480px) {
header{height: 30px;}
}

#brand {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
}

#brand a {
  color: #09c372;
}

ul {
  list-style: none;
  height: 100%;
  display: flex;
  //align-items: center;
  justify-content: space-around;
margin: 0;
padding-inline-start: 0px !important;
}

ul a {
  color: black;
font-size:20px;
}

ul li {
padding: 5px;
    margin-left: 10px;
    border: 1px solid #000;
border-radius: 5px;
    width: 200px;
    text-align: center;
}

@media (min-width: 768px) {
ul li {
  padding: 5px;
  margin-left: 10px;
    border: 0px solid #000;
    width: auto;
    text-align: center;
}
  }

@media (min-width: 1200px) {
ul li {
  padding: 5px;
  margin-left: 10px;
    border: 0px solid #000;
    width: auto;
    text-align: center;
}
  }


ul li:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

#login,
#signup {
  border-radius: 5px;
  padding: 5px 8px;
}

#login {
  border: 1px solid #000;
}

#signup {
  border: 1px solid #ff3860;
}

#signup a {
  color: #ff3860;
}

#login a {
  color: #000;
}

#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 30px;
  height: 3px;
  background-color: black;
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 25px;
  left: 0;
  //height: calc(100vh - 50px);
  //height: auto;
padding-bottom:45px;
  width: 100%;
}

.mobile-menu li {
  margin-bottom: 10px;
background: #f7f5f1;
}

@media only screen and (max-width: 768px) {
  header nav {
    display: none;
  }

  #hamburger-icon {
    display: block;
    z-index: 999;
  }
}

.shadow {
&.top {
    box-shadow: 0px -15px 10px -15px #111;    
  }
  &.bottom {
    box-shadow: 0px 15px 10px -15px #111;    
  }
  &.left {
    box-shadow: -15px 0px 10px -15px #111;    
  }
  &.right {
    box-shadow: 15px 0px 10px -15px #111;    
  }
}
