/* The ko might be replaced by a localized one (in the user's local timezone
   rather than UTC), so it fades in to give that switch a chance to happen. */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
html {
  block-size: 100%;
  overflow: hidden;
}
body {
  display: flex;
  align-items: center;
  background-color: #171717;
  block-size: 100%;
  font-family: 'Baskervville', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #eee;
}
h1 {
  margin-block: 1.5rem 0.75rem;
  font-size: 2em;
  font-weight: 400;
  line-height: 1.125;
}
main {
  box-sizing: border-box;
  margin-inline: auto;
  inline-size: 50%;
  border: 1px solid black;
  background-color: white;
  padding: 1.5em 2em 2em 2em;
  color: black;
  animation: fadeIn 1s;
}
.romaji {
  margin-inline-start: 0.25em;
  font-style: italic;
}
main .sekki {
  display: flex;
  gap: 1em;
}
main .sekki > .name {
  flex-grow: 1;
}
main .sekki .name .name {
  display: block;
}
main .sekki .dates {
  text-align: end;
}
main .ko .kanji,
main .ko .romaji {
  font-size: 1.25em;
  font-weight: 400;
}
main .ko .dates {
  margin-block-start: 1em;
}
