/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Google Sans Code */
@font-face {
  font-family: "Google Sans Code";
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/GoogleSansCode.ttf) format("truetype");
  font-display: auto;
}

@font-face {
  font-family: "Google Sans Code";
  font-style: italic;
  font-weight: 400;
  src: url(/fonts/GoogleSansCode-Italic.ttf) format("truetype");
  font-display: auto;
}

/* Libre Baskerville */
@font-face {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/LibreBaskerville.ttf) format("truetype");
  font-display: auto;
}

@font-face {
  font-family: "Libre Baskerville";
  font-style: italic;
  font-weight: 400;
  src: url(/fonts/LibreBaskerville-Italic.ttf) format("truetype");
  font-display: auto;
}

.center {
  justify-content: center;
  align-items: center;
  display: flex;
  margin: auto;
}

body {
  height: 100%;
  width: 100%;
  word-wrap: break-word;
  max-width: 45em;
  text-align: justify;
  font-family: 'Libre Baskerville', serif;
}

code {
  font-family: 'Google Sans Code';
  background-color: #eeeeee;
  border-radius: 3px;
  padding: 0 3px;
}

a {
  color: blue;
  text-decoration-line: none;
}

.crumbs ol {
  list-style-type: none;
  padding-left: 0;
}

.crumb {
  display: inline-block;
}