header {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  padding: 20px;
  z-index: 100;
}

nav {
  background: rgba(10, 30, 12, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 10px 22px 10px 18px;
}

nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 16px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.07em;
  margin-left: 24px;
  transition: color 0.2s ease;
}

nav a:first-child {
  margin-left: 0;
}

nav a:hover {
  color: #8fdc93;
}
