/* Hello World */
html * {
  box-sizing: border-box;
}
html body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  font-size: 1.5rem;
  background-color: #fff;
  color: #000;
}
html body div.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem;
  z-index: 200;
}
html body div.nav-container a {
  text-decoration: none;
  color: #000;
}
html body div.nav-container a:hover {
  color: blue;
  border-bottom: 1px solid blue;
}
html body div.nav-container a.current_page {
  border-bottom: 1px solid blue;
}
html body div.nav-container .sub_menu {
  position: relative;
  top: 1rem;
  font-size: 1rem;
  line-height: 1.2rem;
}
@media screen and (max-width: 768px) {
  html body div.nav-container {
    padding: 0.5rem;
    font-size: 1rem;
    width: 100vw;
  }
}
html body div.content {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

/*# sourceMappingURL=common.css.map */
