* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Bookerly';
  src: url('bookerly/bookerly.ttf')
  format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: 'Bookerly';
  src: url('bookerly/bookerly-bold.ttf')
  format('truetype');
  font-weight: bold;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 40px 24px;
  color: #111;
  background: #fff;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-size: 24px;
  margin-bottom: 6px;
  font-weight: bold;
  font-family: 'Bookerly', serif;
}

.subtitle {
  color: #555;
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
  width: 80%;

}

a {
  color: #0969da;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.status-msg {
  color: #888;
  font-size: 14px;
  margin-top: 20px;
}

/* Search bar */
.search-wrap {
  margin-bottom: 24px;
}

#search {
  width: 100%;
  max-width: 360px;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}

#search:focus {
  border-color: #aaa;
}

/* Section headings */
.section-heading {
  font-size: 16px;
  font-weight: 600;
  margin: 32px 0 10px;
  color: #333;
  border-bottom: 2px solid #eee;
  padding-bottom: 6px;
  font-family: 'Bookerly', serif;
}