/* colors
 * - yellow: #f2e63d
 * - red: #bf1304
 * - brown: #592316
 */
#header h1,
#header .h1 {
  color: #592316;
  font-family: "Amatic SC", cursive;
}
.content a {
  background-image: linear-gradient(
    transparent,
    transparent 5px,
    #bf1304 5px,
    #bf1304
  );
}
.content a:hover {
  background-image: linear-gradient(
    transparent,
    transparent 5px,
    #f2e63d 5px,
    #f2e63d
  );
}
/*
 * Avoid using underlining hover on icon links
 */
.content a.icon:hover {
  background-image: none;
}
code {
  font-family: "Source Code Pro", monospace;
  padding: 0 2px;
  /* Match code background */
  background-color: #fafafa;
  border: 1px solid #592316;
  border-radius: 2px;
  -webkit-border-radius: 2px;
}
#header-post #menu-icon-tablet {
  color: #bf1304;
}

pre {
  font-size: 16px;
}
