/* /components/header/header.css */

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #2c3e50;
  color: white;
}

.main-header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.main-header .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.main-header .main-nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.main-header .main-nav a:hover {
  text-decoration: underline;
}