body {
  background: #eee;
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  margin: 0 auto;
  clear: both;
  /* display: table; */
}

a {
  display: inline-block;
  color: #de650f;
  text-decoration: none;
}

a:hover {
  color: #de650f;
}

nav {
  /* background: rgba(50, 50, 50, 0.25); */
  /* box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); */
  position: fixed;
  top: 0;
  /* height: 80px; */
  left: 0;
  /* display: flex; */
  /* height: 100%; */
  width: 100%;
  z-index: 9999;
  /* align-items: center; */
  transition: all 0.5s;
}

nav.scrollUp {
  transform: translateY(-180px);
}

nav ul.navbar-menu {
  margin: 0;
  padding: 0;
  display: inline-block;
  float: right;
}

nav ul.navbar-menu li {
  display: inline-block;
  margin: 0 10px;
}

nav ul.navbar-menu li a {
  color: #666;
  font-size: 14px;
}

nav a#brand {
  text-transform: uppercase;
  float: left;
  padding: 0;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0px;
  font-weight: 800;
  font-size: 20px;
  position: absolute;
  /* background: #141413; */
  /* top: -34px; */
}

nav a#brand img {
  width: 100%;
  max-width: 400px;
  margin-top: 0;
  display: table;
  transition: all ease 0.3s;
}

@media (max-width: 768px) {
  nav ul.navbar-menu {
    display: none;
  }
}
