
/* Reset default link styles */
a {
  text-decoration: none;
}

/* Navbar styles */
header {
  background-color: #003300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.navbar-menu a {
  margin-left: 1rem;
  color: white;
  text-decoration: none;
}

.navbar-menu a:hover {
  text-decoration: underline;
}
