header {
  background: #ede9e0;
  padding: 1.5em 2em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.left {
  display: flex;
  align-items: center;
  gap: 2em;
}

nav a {
  margin-right: 1em;
}

header a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

header a:hover {
  color: #0077cc;
}

header img {
  height: 10vh;
}
