/* nav {
  font-size: 18px;
  justify-self: right;
  align-self: end;
  display: grid;
  margin: 50px;
}

nav a {
  margin-left: 20px;
  justify-self: left;
  text-align: left;
  margin: 50px;
} */


/* Navigation */
nav {
  box-sizing: border-box;
  height: 60px;
  font-size: 18px;
  justify-self: right;
  background-color: #3d3229;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

nav > ul > li {
  position: relative;
}

nav a {
  display: block;
  padding: 1rem 1.5rem;
  color: #f5f0e6;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

nav > ul > li > a:hover {
  background-color: #5a4d3f;
}

/* Dropdown */
nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #4a3f33;
  min-width: 50px;
  flex-direction: column;
}

nav ul li:hover > ul {
  display: flex;
}

nav ul ul a {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
}

nav ul ul a:hover {
  background-color: #5a4d3f;
}
  
  