/* header.css */
.site-header {
  background-color: #111;
  color: white;
  padding: 1em 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6em;
  font-weight: bold;
}

.nav a {
  color: white;
  margin-left: 1em;
  font-weight: 500;
}

.nav a:hover,
.nav .active {
  color: #c8102e;
}
