.navbar {
  background-color: #333;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 22px;
  font-weight: bold;
}

.navbar .logo {
  font-size: 22px;
  font-weight: bold;
  color: white;
}

.navbar .nav-links {
  flex: 1;
  display: flex;
  justify-content: left;
  gap: 8px;
  padding: 0 20px;
}

.navbar .nav-links a {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
}

.navbar .nav-links a:hover {
  background-color: #575757;
  border-radius: 5px;
}
