@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
:root {

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

body {
  background-color: #353836;
  color: white;
  font-family: "Poppins", sans-serif;
}
/* ----    ---- */
header a {
  text-decoration: none;
}
header {
  padding: 0 20px;
  background-color: #1d1f1d;
  height: 50px;
  display: flex;
  justify-content: space-between;
}
#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;
}
ul a {
  margin-left: 5px;
  width: 378px;
  color: #b03b26;
  border: 0 solid #c46c26;
}
ul li {
  padding: 5px;
  margin-left: 50px;

  position: sticky;
  border: 0 solid #ffaf38;
  left: 1px;
}
ul li:hover {
  transform: scale(1.1);
  transition: 0.3s;
}
/* ----    ---- */
#login,
#signup {
  border-radius: 5px;
  padding: 5px 8px;
}
#login {
  border: 1px solid #498afb;
}
#signup {
  border: 1px solid #ff3860;
}
#signup a {
  color: #ff3860;
}
#login a {
  color: #498afb;
}
/* ----    ---- */
#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}
#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: white;
  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: 50px;
  left: 0;
  height: calc(100vh - 50px);
  width: 100%;
}
.mobile-menu li {
  margin-bottom: 10px;
}
/* ----    ---- */
.footer {
  position: sticky;
  top:298px;
  text-align: center;
  font-family: Arial, sans-serif;
  background-color: #353836;
  border: 0 solid #e87a0c;

}
.container {
  position: sticky;
  background-color: #b0b041;
  border: 0 solid #2c00ee;
}
.footer-content {
  flex-basis: 40%;
  font-size: small;
  text-align: center;
  border: 0 solid #2c00ee;
  background-color: #7a5340;
}
.footer-content p{
  position: sticky;
  color: #b0b7c2;
  display: block;
  text-align: center;
  font-family: Arial, sans-serif;
  border: 0 solid #2c00ee;
  /*background-color: #353836;*/
  background-color: #353836;
}
#demo{
  position: sticky;
  left: -10px;
  color: #bea49e;
  display: block;
  text-align: center;
  font-family: Arial, sans-serif;
  height: 20px;
  border: 0 solid #353836;
  background-color: #353836;
}
.active{
  background-color: #e37373;
  color: white;
}
/* ----    ---- */
@media only screen and (max-width: 600px) {
  :root {
    /* ----    ---- */
  }
  header nav {
    display: none;
  }
  /* ----    ---- */
  #hamburger-icon {
    display: block;
  }

}
