.header {
  display: flex;
  justify-content: center;  /* 水平置中 */
  align-items: center;      /* 垂直置中 */
  padding: 10px 20px;
  background: #222;
  color: white;
}

.header .logo img {
  height: 40px;
  cursor: pointer;  /* 滑鼠移過去變手型 */
}
