* {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  padding: 0 1em;
  max-width: 40em;

  font-family: Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 18px;
  line-height: 1.6;

  color: #111;
  background-color: #ffffff;
}

h1 {
  margin: 2em 0 0 0;
  font-size: 28px;
  font-weight: normal;
}

h1 .name {
  font-weight: bold;
}

h1 .title-dash {
  color: #888;
}

h1 .title-rest {
  color: #888;
  white-space: nowrap;
}

@media (max-width: 480px) {
  h1 .title-dash {
    display: none;
  }

  h1 .title-rest {
    display: block;
  }
}


p {
  margin: 1em 0;
}

a {
  color: #111;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

hr {
  margin: 1.5em 0;
  border: none;
  border-top: 1px solid #ccc;
}

nav {
  font-size: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  row-gap: 0.1em;
}

nav a {
  margin: 0 0.7em;
  text-decoration: none;
  white-space: nowrap;
}

nav .nav-item {
  display: inline-flex;
  align-items: baseline;
}

nav .sep {
  color: #ccc;
  font-size: 0.4em;
  vertical-align: middle;
}

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