* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
}

.active {
  text-decoration: underline;
  font-weight: bold;
}

body {
  background-color: #414C56;
}

header nav {
  width: 100%;
  background-color: #EAEAEA;
}
header ul {
  padding: 1.5rem;
  display: flex;
  list-style-type: none;
  justify-content: start;
}
header ul li {
  max-height: 24px;
  font-size: 1.25rem;
  margin: 0rem 2rem;
}
header ul li a {
  color: black;
  text-decoration: none;
}

footer {
  padding: 1rem 0rem;
  padding-bottom: 20px;
  text-align: center;
}
footer p {
  color: #EAEAEA;
  font-size: 1.1rem;
}

@media screen and (max-width: 400px) {
  header nav ul {
    width: 100%;
    flex-direction: column;
  }
  header nav ul li {
    padding: 1rem 0rem;
    border-bottom: 2px solid #414C56;
    max-height: 58px;
  }
  .active {
    text-decoration: none;
  }
}/*# sourceMappingURL=common.css.map */