/* Header Style */
header {
  background: #222;
  color: #fff;
  padding: 8px 0;   /* height kam karne ke liye padding choti kar di */
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 20px;   /* text size choti */
  margin: 0;
}

header nav a {
  color: #fff;
  margin-left: 15px;
  font-size: 14px;   /* links bhi choti */
  text-decoration: none;
}

header nav a:hover {
  text-decoration: underline;
}
