body {
  font-family: Arial, sans-serif;
  margin: 0;
}

.header-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 50px;
}

header {
  background: #1a1a1a; /* change this to match your logo */
  color: white;
  padding: 15px;
}

nav a {
  color: white;
  margin-right: 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}
