/*****************************************************************************/
/*
/* Common
/*
/*****************************************************************************/

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  background-color: white;
  color: #222;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

/*****************************************************************************/
/*
/* Basic Typography
/*
/*****************************************************************************/

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2rem;
  margin-top: 0;
}

h2 {
  font-size: 1.4rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.25em;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 1em 0;
}

a {
  color: #0645ad;
}

a:hover {
  color: #000;
}

a:visited {
  color: #5a3696;
}

/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/

ul.posts {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 2em;
}

ul.posts li {
  line-height: 1.75em;
  margin-bottom: 0.75em;
}

ul.posts span {
  color: #777;
  font-family: Monaco, "Courier New", monospace;
  font-size: 0.85rem;
}

/*****************************************************************************/
/*
/* Site
/*
/*****************************************************************************/

.site {
  max-width: 760px;
  width: min(92vw, 760px);
  margin: 3rem auto 2rem auto;
  padding: 0 1rem;
  text-align: left;
}

.title {
  color: #a00;
  font-weight: bold;
  margin-bottom: 2rem;
}

.site .title a {
  color: #a00;
  text-decoration: none;
}

.site .title a:hover {
  color: black;
}

.site .title a.extra {
  color: #777;
  text-decoration: none;
  margin-left: 1em;
}

.site .title a.extra:hover {
  color: black;
}

.site .meta {
  color: #777;
}

.site .footer {
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #ddd;
  margin-top: 3rem;
  padding-top: 1rem;
}

/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/

#post pre {
  border: 1px solid #ddd;
  background-color: #f5f5ff;
  padding: 0.75em;
  overflow-x: auto;
}

#post ul,
#post ol {
  margin-left: 1.35em;
}

#post code {
  border: 1px solid #ddd;
  background-color: #f5f5ff;
  font-size: 0.9em;
  padding: 0.1em 0.25em;
}

#post pre code {
  border: none;
  padding: 0;
}

#post img {
  max-width: 100%;
  height: auto;
  padding: 1em 0;
}

#post pre.terminal {
  border: 1px solid black;
  background-color: #333;
  color: white;
}

#post pre.terminal code {
  background-color: #333;
}

#related {
  margin-top: 2em;
}

#related h2 {
  margin-bottom: 1em;
}
