.nav-buttons {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 16px;
  z-index: 20;
}

.nav-btn {
  padding: 10px 18px;
  background-color: #3a2a1d;
  border: 1px solid #8a5a2b;
  border-radius: 10px;
  color: #f5e1b5;
  font-family: Georgia, serif;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-btn:hover {
  background-color: #4a3424;
  transform: scale(1.05);
}