* {
  font-family: 'Atkinson Hyperlegible';
  box-sizing: border-box;
  overflow-wrap: break-word;
}

body {
  margin: 0px;
  padding: 0px;
  line-height: 1.6;
}

.large-text {
  font-size: 1.5em;
}

.centre-text {
  text-align: center;
}

.site-title {
  font-weight: bold;
  font-size: 1.5em;
  color: #000;
  text-decoration: none;
}

.site-title-links {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

pre {
  padding: 12px;
  border-radius: 4px;
  overflow-x: auto;
  background-color: #eee;
}

p > code {
  background-color: #f6f6f6;
  padding-left: 4px;
  padding-right: 4px;
  border-radius: 4px;
  color: #ff1a75;
}

h3 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

h4 {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}

.flex {
  display: flex;
}

.spread-horizontally {
  justify-content: space-between;
}

.centre {
  display: flex;
  justify-content: center;
}

.centre-vertically {
  display: flex;
  align-items: center;
}

.main-size {
  width: 100%;
  max-width: 720px;
  padding: 12px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 16px;
}

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

.dark-link {
  color: #000;
  text-decoration: none;
}

.dark-link:hover {
  color: #666;
}

.pagination {
  list-style-type: none;
  padding: 0px;
}

.page-item {
  display: inline-block;
  padding: 8px;
}

#search-box {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 2px;
}

#search-box:focus {
  outline: none;
  border: 1px solid #ff1a75;
}

#search-button {
  cursor: pointer;
  border-radius: 2px;
}

#search-results {
  margin-top: 16px;
}