/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  background-repeat: no-repeat;
  /* 2 */ }

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */ }

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  overflow-wrap: break-word;
  /* 3 */
  -moz-tab-size: 4;
  /* 4 */
  tab-size: 4;
  /* 4 */
  -webkit-tap-highlight-color: transparent;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 6 */ }

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0; }

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit;
  /* 1 */
  height: 0;
  /* 2 */ }

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0; }

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "\200B";
  float: left; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
  overflow: auto;
  /* 3 */ }

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%; }

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle; }

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none; }

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor; }

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse;
  /* 1 */
  border-color: inherit;
  /* 2 */
  text-indent: 0;
  /* 3 */ }

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0; }

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button; }

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0; }

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline; }

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0;
  /* 1 */
  resize: vertical;
  /* 3 */ }

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type="search" i]) {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content; }

:where(dialog:not([open])) {
  display: none; }

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item; }

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy="true" i]) {
  cursor: progress; }

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer; }

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed; }

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden="false" i][hidden]) {
  display: initial; }

:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute; }

@font-face {
  font-family: 'latoregular';
  src: url("fonts/lato/lato-regular.woff2") format("woff2"), url("fonts/lato/lato-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'latomedium';
  src: url("fonts/lato/lato-medium.woff2") format("woff2"), url("fonts/lato/lato-medium.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'latolight';
  src: url("fonts/lato/lato-light.woff2") format("woff2"), url("fonts/lato/lato-light.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'latobold';
  src: url("fonts/lato/lato-bold.woff2") format("woff2"), url("fonts/lato/lato-bold.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'latosemibold';
  src: url("fonts/lato/lato-semibold.woff2") format("woff2"), url("fonts/lato/lato-semibold.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

.main-title {
  font-family: 'latolight', sans-serif;
  text-align: left;
  font-size: 26px;
  line-height: 26px;
  margin-top: 59px;
  font-weight: 300; }
  @media (max-width: 559px) {
    .main-title {
      margin-top: 20px; } }
  .main-title a {
    color: #333;
    border-bottom: 1px solid #ccc;
    transition: color 1s, border-bottom-color 1s;
    color: #333;
    border-color: #fff;
    padding-bottom: 5px; }
    .main-title a:hover {
      color: #000;
      border-color: #333; }
    .main-title a:hover {
      border-color: #555; }

.home-post-li {
  margin-bottom: 25px; }

.home-post-link {
  font-family: 'latoregular', sans-serif;
  font-size: 20px;
  color: #333;
  border-bottom: 1px solid #ccc;
  transition: color 1s, border-bottom-color 1s;
  border-color: #fff; }
  .home-post-link:hover {
    color: #000;
    border-color: #333; }

.post-title {
  font-family: 'latolight', sans-serif;
  text-align: center;
  font-size: 40px;
  line-height: 52px;
  margin-top: 117px;
  margin-bottom: 9px; }

.post-date {
  color: #555;
  text-align: center;
  font-style: italic;
  margin-bottom: 100px;
  font-size: 16px; }

.more-posts {
  text-align: center; }
  .more-posts a {
    color: #333;
    border-bottom: 1px solid #ccc;
    transition: color 1s, border-bottom-color 1s;
    color: #555; }
    .more-posts a:hover {
      color: #000;
      border-color: #333; }

.nicetext {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 32px; }
  @media (max-width: 559px) {
    .nicetext {
      font-size: 18px;
      line-height: 31px; } }
  .nicetext b,
  .nicetext strong {
    font-weight: 700; }
  .nicetext h2,
  .nicetext h3,
  .nicetext h4,
  .nicetext h5,
  .nicetext h6 {
    font-family: 'latolight', sans-serif; }
  .nicetext h2 {
    font-size: 27px;
    line-height: 39px;
    margin-top: 73px; }
  .nicetext h3 {
    font-size: 22px;
    line-height: 26px;
    margin-top: 59px; }
  .nicetext h4 {
    font-size: 20px;
    line-height: 26px;
    margin-top: 59px; }
  .nicetext p,
  .nicetext h2,
  .nicetext h3,
  .nicetext h4,
  .nicetext ul {
    margin-bottom: 32px; }
    @media (max-width: 559px) {
      .nicetext p,
      .nicetext h2,
      .nicetext h3,
      .nicetext h4,
      .nicetext ul {
        margin-bottom: 31px; } }
  .nicetext p a {
    color: #333;
    border-bottom: 1px solid #ccc;
    transition: color 1s, border-bottom-color 1s; }
    .nicetext p a:hover {
      color: #000;
      border-color: #333; }
  .nicetext p + ul {
    margin-top: -32px; }
    @media (max-width: 559px) {
      .nicetext p + ul {
        margin-top: -31px; } }
  .nicetext ul {
    list-style: disc;
    padding-left: 30px; }
  .nicetext pre[class*=language-] {
    margin-bottom: 50px; }
  .nicetext hr {
    color: #222;
    text-align: center;
    display: block;
    border: 0;
    height: 110px;
    line-height: 93px; }
    @media (max-width: 559px) {
      .nicetext hr {
        height: 90px;
        line-height: 76px; } }
    .nicetext hr:before {
      content: "***";
      letter-spacing: .2em; }
  .nicetext figure,
  .nicetext iframe {
    text-align: center;
    margin: 0 0 32px; }
    @media (max-width: 559px) {
      .nicetext figure,
      .nicetext iframe {
        margin: 0 0 31px; } }
  .nicetext figcaption {
    color: #444;
    text-align: center;
    font-style: italic;
    font-size: 16px;
    margin-top: 10px; }
  .nicetext a figcaption:hover {
    color: #000;
    text-decoration: underline; }
  .nicetext code {
    font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;
    background-color: #efefef; }

html {
  background: white;
  color: #000;
  font-family: 'latoregular', sans-serif;
  font-weight: 400;
  font-size: 18px; }

body {
  padding: 0 20px 100px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box; }
  @media (max-width: 559px) {
    body {
      padding: 0; } }

img,
iframe {
  max-width: 100%; }

ul,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0; }

ul {
  list-style: none; }

a {
  text-decoration: none; }

.layout h1,
.layout h2,
.layout h3,
.layout h4,
.layout p,
.layout .main-title,
.layout ul,
.layout figcaption {
  margin-left: 50px;
  margin-right: 50px; }
  @media (max-width: 559px) {
    .layout h1,
    .layout h2,
    .layout h3,
    .layout h4,
    .layout p,
    .layout .main-title,
    .layout ul,
    .layout figcaption {
      margin-left: 20px;
      margin-right: 20px; } }

.small-line {
  border-top: 1px solid #ccc;
  padding-top: 70px;
  margin: 75px auto 0;
  width: 100px; }
  @media (max-width: 559px) {
    .small-line {
      padding-top: 32px; } }
