* {
  margin: 0;
  padding: 0;
}

body {
  background: #282a36;
  color: #f8f8f2;
  font-family: "Source Sans Pro";
  font-weight: 300;
  min-height: 100vh;
}

.page {
  width: 840px;
  padding: 0 2rem;
  margin: 0 auto;
}

.outer-flex {
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}

.single {
  flex: 1 1 auto;
}

h1, .page h2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.title {
  margin: 0;
  font-size: 72px;
  text-align: center;
  font-family: "Source Sans Pro";
  font-weight: 700;
  height: auto;
}

.subtitle {
  margin: 0 0 0px;
  font-size: 20px;
  font-weight: 400;
  min-height: 36px;
}

.header {
  padding: 100px 0 40px;
  height: auto;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
  flex-basis: 100%;
  max-width: 100%;
}

.gh-buttons {
  margin-top: 25px;
  height: 33px;
}

.gh-buttons span {
  margin: 0 5px;
}

/* Navigation
   ========================================================================== */

.topbar-title {
  margin-left: 10px;
  font-family: "Source Sans Pro";
  font-weight: 700;
  display: inline-block;
  color: #f8f8f2;
  font-size: 24px;
}

.topbar-toggle {
  display: flex;
  flex-direction: column;
  margin: 8px 0px 0px 10px;
}

.topbar-title img {
  width: 48px;
  margin-top: 8px;
}

.topbar-toggle img {
  width: 48px;
  margin: 0 auto;
}

.topbar-toggle p {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  margin: 4px 0px 0px 0px;
  color: #ff79c6;
}

.cyan .topbar-title:hover { color: rgba(139, 233, 253, 1); }
.green .topbar-title:hover { color: rgba(80, 250, 123, 1); }
.orange .topbar-title:hover { color: rgba(255, 184, 108, 1); }
.red .topbar-title:hover { color: #ff5555; }
.pink .topbar-title:hover { color: rgba(255, 121, 198, 1); }
.purple .topbar-title:hover { color: rgba(189, 147, 249, 1); }
.yellow .topbar-title:hover { color: rgba(241, 250, 140, 1); }

hr {
  margin: 10px 0px 10px 0px;
}

nav {
  padding-top: 2rem;
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  color: #f8f8f2;
  font-size: 20px;
  font-weight: 400;
  border-bottom: 2px solid transparent;
  margin-left: 20px;
}

.cyan nav ul li a:hover {
  border-color: rgba(139, 233, 253, 1);
  color: rgba(139, 233, 253, 1);
}

.green nav ul li a:hover {
  border-color: rgba(80, 250, 123, 1);
  color: rgba(80, 250, 123, 1);
}

.orange nav ul li a:hover {
  border-color: rgba(255, 184, 108, 1);
  color: rgba(255, 184, 108, 1);
}

.red nav ul li a:hover {
  border-color: #ff5555;
  color: #ff5555;
}

.pink nav ul li a:hover {
  border-color: rgba(255, 121, 198, 1);
  color: rgba(255, 121, 198, 1);
}

.purple nav ul li a:hover {
  border-color: rgba(189, 147, 249, 1);
  color: rgba(189, 147, 249, 1);
}

.yellow nav ul li a:hover {
  border-color: rgba(241, 250, 140, 1);
  color: rgba(241, 250, 140, 1);
}

/* Categories
   ========================================================================== */

.category-title {
  margin: 0 0 40px;
  font-size: 48px;
  text-align: center;
  font-family: "Source Sans Pro";
  font-weight: 700;
}

.category-title.orange { color: #ffb86c; }
.category-title.red { color: #ff5555; }
.category-title.cyan { color: #8be9fd; }
.category-title.purple { color: #bd93f9; }

.category-title.tilt-right {
  transform: rotate(10deg);
}

.category-title.tilt-left {
  transform: rotate(-10deg);
}

/* App
   ========================================================================== */

.app {
  margin-bottom: 80px;
  text-decoration: none;
}

.app-title {
  margin: 20px 0 0;
  font-size: 36px;
  color: #BCC2CD;
  text-align: center;
  font-family: "Source Sans Pro";
  font-weight: 700;
  transition: color .3s linear;
}

.app:hover .orange { color: #ffb86c; }
.app:hover .pink { color: #ff79c6; }
.app:hover .cyan { color: #8be9fd; }
.app:hover .purple { color: #bd93f9; }
.app:hover .red { color: #ff5555; }

.app-img {
  height: 205px;
  display: block;
  display: flex;
  align-items: center;
    justify-content: center;
}

.app-img img {
  display: flex;
  align-self: flex-end;
}

.app-views {
  color: #f8f8f2;
  text-align: center;
}

/* Credits
   ========================================================================== */

.credits {
  text-align: center;
  font-size: 1.3em;
  margin: 0;
}

.credits a {
  text-decoration: none;
  -webkit-transition: color .3s linear;
  transition: color .3s linear;
}

.credits .cyan { color: rgba(139, 233, 253, 1); }
.credits .cyan:hover { color: rgba(139, 233, 253, .7); }

.credits .green { color: rgba(80, 250, 123, 1); }
.credits .green:hover { color: rgba(80, 250, 123, .7); }

.credits .orange { color: rgba(255, 184, 108, 1); }
.credits .orange:hover { color: rgba(255, 184, 108, .7); }

.credits .red { color: rgba(255, 85, 85, 1); }
.credits .red:hover { color: rgba(255, 85, 85, .7); }

.credits .pink { color: rgba(255, 121, 198, 1); }
.credits .pink:hover { color: rgba(255, 121, 198, .7); }

.credits .love {
  display: inline-block;
  position: relative;
  top: .2em;
  font-size: 1.4em;
  color: #ff79c6;
  -webkit-transform: scale(.9);
  -moz-transform: scale(.9);
  transform: scale(.9);
  -webkit-animation: love .5s infinite linear alternate-reverse;
  -moz-animation: love .5s infinite linear alternate-reverse;
  animation: love .5s infinite linear alternate-reverse;
}

@-webkit-keyframes love {
  to { -webkit-transform: scale(1.1); }
}

@-moz-keyframes love {
  to { -moz-transform: scale(1.1); }
}

@keyframes love {
  to { transform: scale(1.1); }
}

/* ==========================================================================
   Instructions
   ========================================================================== */

h3 {
  font-family: "Source Sans Pro";
  font-weight: 700;
  text-align: left;
  /*font-size: 1.4em;*/
}

h4 {
  /*font-size: 2em;*/
  font-weight: 300;
  margin: 1em 0 .3em;
}

code {
  font-family: "Monospace", monospace;
  font-size: 0.7em;
}

pre {
  background-color: #282a36;
  padding: 20px;
  margin: 0 0 2em 0;
  border-radius: 5px;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

ol {
  font-size: 1.1em;
  font-weight: 300;
  margin: 0 0 20px 30px;
}

p {
  margin: 0 0 .5em 0;
}

a {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  text-decoration: none;
}

.gh-repo {
  max-width: 99%;
}

/* Theme
   ========================================================================== */

.page {
  margin: 0 auto 80px;
}

table, th, td {
  border: 2px solid;
  border-color: #44475a;
  margin: 0px 0px 20px 0px;
}

table {
  border-collapse: collapse;
}

th, td {
  padding: 3px;
}

.noborder table,
.noborder th,
.noborder td {
  border: 0px solid;
}

form table {
	width: 100%;
}

table input, table textarea {
	width: 100%;
}

.views {
  float: right;
  margin-top: 30px;
  opacity: 1;
  transition: .3s ease-in opacity;
}

.views.loading {
  opacity: 0;
}

.instructions {
  margin-bottom: 2em;
}

.instructions img {
  border-radius: 10px;
  display: block;
  margin: 20px auto;
  height: auto;
  max-width: 100%;
}

.instructions ol li ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.orange .title,
.orange .subtitle a,
.orange .page a,
.orange .form input {
  color: rgba(255, 184, 108, 1);
}

.orange .subtitle a:hover,
.orange .page a:hover {
  color: rgba(255, 184, 108, .7);
  border-color: rgba(255, 184, 108, .7);
}

.orange .form input[type="submit"] {
  background: rgba(255, 184, 108, 1);
}

.orange ::selection {
  background: rgba(255, 184, 108, 1);
  color: #000000;
}

.red .title,
.red .subtitle a,
.red .page a,
.red .form input {
  color: rgba(255, 85, 85, 1);
}

.red .subtitle a:hover,
.red .page a:hover {
  color: rgba(255, 85, 85, .7);
  border-color: rgba(255, 85, 85, .7);
}

.red .form input[type="submit"] {
  background: rgba(255, 85, 85, 1);
}

.red ::selection {
  background: rgba(255, 85, 85, 1);
  color: #000000;
}

.pink .title,
.pink .subtitle a,
.pink .page a,
.pink .form input {
  color: rgba(255, 121, 198, 1);
}

.pink .subtitle a:hover,
.pink .page a:hover {
  color: rgba(255, 121, 198, .7);
  border-color: rgba(255, 121, 198, .7);
}

.pink .form input[type="submit"] {
  background: rgba(255, 121, 198, 1);
}

.pink ::selection {
  background: rgba(255, 121, 198, 1);
  color: #000000;
}

.cyan .title,
.cyan .subtitle a,
.cyan .page a,
.cyan .form input {
  color: rgba(139, 233, 253, 1);
}

.cyan .subtitle a:hover,
.cyan .page a:hover {
  color: rgba(139, 233, 253, .7);
  border-color: rgba(139, 233, 253, .7);
}

.cyan .form input[type="submit"] {
  background: rgba(139, 233, 253, 1)
}

.cyan ::selection {
  background: rgba(139, 233, 253, 1);
  color: #000000;
}

a { /*default*/
  color: rgba(189, 147, 249, 1);
}

a:hover { /*default*/
  color: rgba(189, 147, 249, .7);
  border-color: rgba(189, 147, 249, .7);
}

.purple .title,
.purple .subtitle a,
.purple .page a,
.purple .form input {
  color: rgba(189, 147, 249, 1);
}

.purple .subtitle a:hover,
.purple .page a:hover {
  color: rgba(189, 147, 249, .7);
  border-color: rgba(189, 147, 249, .7);
}

.purple .form input[type="submit"] {
  background: rgba(189, 147, 249, 1);
}

.purple ::selection {
  background: rgba(189, 147, 249, 1);
  color: #000000;
}

.yellow .title,
.yellow .subtitle a,
.yellow .page a,
.yellow .form input {
  color: rgba(241, 250, 140, 1);
}

.yellow .subtitle a:hover,
.yellow .page a:hover {
  color: rgba(241, 250, 140, .7);
  border-color: rgba(241, 250, 140, .7);
}

.yellow .form input[type="submit"] {
  background: rgba(241, 250, 140, 1);
}

.yellow ::selection {
  background: rgba(241, 250, 140, 1);
  color: #000000;
}

.pro-highlight {
  color: #50fa7b;
}

.green .title,
.green .subtitle a,
.green .page a,
.green .form input {
  color: rgba(80, 250, 123, 1);
}

.green .subtitle a:hover,
.green .page a:hover {
  color: rgba(80, 250, 123, .7);
  border-color: rgba(80, 250, 123, .7);
}

.green .form input[type="submit"] {
  background: rgba(80, 250, 123, 1);
}

.green ::selection {
  background: rgba(80, 250, 123, 1);
  color: #000000;
}

.page {
  width: 840px;
}

.preview {
  border-radius: 10px;
  display: block;
  margin: -30px auto 20px;
  height: auto;
  max-width: 100%;
}

/* Updates
   ========================================================================== */

.form {
  /*max-width: 400px;*/
  margin-top: 1em;
  margin-bottom: .5em;
}

.form:before,
.form:after {
  display: table;
  line-height: 0;
  content: "";
}

.form:after {
  clear: both;
}

.form * {
  margin: 0;
  border: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box !important;
  float: left !important;
}

.form input {
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  font-family: "Source Sans Pro";
  font-size: 15px;
  line-height: 20px;
  background: #252525;
  border-right: 0;
  padding: 10px;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02);
  background-position: top right;
  background-repeat: no-repeat;
  text-rendering: optimizeLegibility;
  font-smoothing: antialiased;
  -webkit-appearance: none;
  -moz-appearance: caret;
  height: 40px !important;
  overflow: auto;
}

.form input[type="submit"] {
  border-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
  -webkit-transition: all .05s ease-in-out;
  transition: all .05s ease-in-out;
  display: inline-block;
  padding: 11px 15px 12px;
  cursor: pointer;
  color: #000000;
  font-size: 15px;
  line-height: 100%;
  font-family: "Source Sans Pro";
}

img.rss {
	margin: 0px 8px;
	height: 40px;
}

img.bsky {
    margin: 0px;
    height: 38px;
}

/* ==========================================================================
   Single
   ========================================================================== */

.single .wrap {
  background: #282a36;
  padding: 20px 0 40px 0;
}

.footer {
  background: #282a36;
  width: 840px;
  max-width: 90vw;
  margin: 0 auto;
  padding: 0;
}

.single .page {
  margin-bottom: 0;
}

.single h3 {
  margin-bottom: 10px;
}

.single p {
  font-size: 20px;
  margin: 20px 0px;
}

.cyan .single a {
  border-bottom: 2px solid rgba(139, 233, 253, 1);
}

.green .single a {
  border-bottom: 2px solid rgba(80, 250, 123, 1);
}

.orange .single a {
  border-bottom: 2px solid rgba(255, 184, 108, 1);
}

.red .single a {
  border-bottom: 2px solid #ff5555;
}

.pink .single a {
  border-bottom: 2px solid rgba(255, 121, 198, 1);
}

.purple .single a {
  border-bottom: 2px solid rgba(189, 147, 249, 1);
}

.yellow .single a {
  border-bottom: 2px solid rgba(241, 250, 140, 1);
}

.nounderline {
  border-bottom: none !important;
}

.single a.footnote-ref { border-bottom: none; }
.cyan .single sup { color: #8be9fd; }
.green .single sup { color: #50fa7b; }
.orange .single sup { color: #ffb86c; }
.red .single sup { color: #ff5555; }
.pink .single sup { color: #ff79c6; }
.purple .single sup { color: #bd93f9; }
.yellow .single sup { color: #f1fa8c; }

.single figure {
  margin-Bottom: 20px;
  text-align: center
}

.single figure a {
  border: 0;
}

.single figure img {
  /*border-radius: 10px;*/
  /*border: 5px solid #8be9fd;*/
  margin-top: 10px;
  max-width: 90%;
}

.single figure figcaption {
  font-style: italic;
  text-align: center;
}

.single .highlight {
  color: #8be9fd;
}

/* ==========================================================================
   Blog
   ========================================================================== */

.inner-div {
	float: left;
	margin-right: 10px;
}

.cyan-override    { color: #8be9fd !important;}
.green-override   { color: #50fa7b !important;}
.orange-override  { color: #ffb86c !important;}
.red-override     { color: #ff5555 !important;}
.pink-override    { color: #ff79c6 !important;}
.purple-override  { color: #bd93f9 !important;}
.yellow-override  { color: #f1fa8c !important;}

.cyan-override    a, a.cyan-override    { border-bottom: 2px solid #8be9fd !important;}
.green-override   a, a.green-override   { border-bottom: 2px solid #50fa7b !important;}
.orange-override  a, a.orange-override  { border-bottom: 2px solid #ffb86c !important;}
.red-override     a, a.red-override     { border-bottom: 2px solid #ff5555 !important;}
.pink-override    a, a.pink-override    { border-bottom: 2px solid #ff79c6 !important;}
.purple-override  a, a.purple-override  { border-bottom: 2px solid #bd93f9 !important;}
.yellow-override  a, a.yellow-override  { border-bottom: 2px solid #f1fa8c !important;}

.cyan-override    a:hover, a.cyan-override:hover    { color: rgba(139, 233, 253, 0.7) !important;border-color: rgba(139, 233, 253, 0.7) !important;}
.green-override   a:hover, a.green-override:hover   { color: rgba(80, 250, 123, 0.7)  !important;border-color: rgba(80, 250, 123, 0.7)  !important;}
.orange-override  a:hover, a.orange-override:hover  { color: rgba(255, 184, 108, 0.7) !important;border-color: rgba(255, 184, 108, 0.7) !important;}
.red-override     a:hover, a.red-override:hover     { color: rgba(255, 85, 85, 0.7)   !important;border-color: rgba(255, 85, 85, 0.7)   !important;}
.pink-override    a:hover, a.pink-override:hover    { color: rgba(255, 121, 198, 0.7) !important;border-color: rgba(255, 121, 198, 0.7) !important;}
.purple-override  a:hover, a.purple-override:hover  { color: rgba(189, 147, 249, 0.7) !important;border-color: rgba(189, 147, 249, 0.7) !important;}
.yellow-override  a:hover, a.yellow-override:hover  { color: rgba(241, 250, 140, 0.7) !important;border-color: rgba(241, 250, 140, 0.7) !important;}

svg.cyan-override     text, .cyan-override    svg text { fill: #8be9fd !important;}
svg.green-override    text, .green-override   svg text { fill: #50fa7b !important;}
svg.orange-override   text, .orange-override  svg text { fill: #ffb86c !important;}
svg.red-override      text, .red-override     svg text { fill: #ff5555 !important;}
svg.pink-override     text, .pink-override    svg text { fill: #ff79c6 !important;}
svg.purple-override   text, .purple-override  svg text { fill: #bd93f9 !important;}
svg.yellow-override   text, .yellow-override  svg text { fill: #f1fa8c !important;}

svg.cyan-override     polygon, .cyan-override    svg polygon { stroke: #8be9fd !important;}
svg.green-override    polygon, .green-override   svg polygon { stroke: #50fa7b !important;}
svg.orange-override   polygon, .orange-override  svg polygon { stroke: #ffb86c !important;}
svg.red-override      polygon, .red-override     svg polygon { stroke: #ff5555 !important;}
svg.pink-override     polygon, .pink-override    svg polygon { stroke: #ff79c6 !important;}
svg.purple-override   polygon, .purple-override  svg polygon { stroke: #bd93f9 !important;}
svg.yellow-override   polygon, .yellow-override  svg polygon { stroke: #f1fa8c !important;}

.green h1 {
  color: rgba(80, 250, 123, 1)
}

.cyan h1 {
  color: rgba(139, 233, 253, 1)
}

.purple h1 {
  color: rgba(189, 147, 249, 1)
}

.pink h1 {
  color: rgba(255, 121, 198, 1)
}

.orange h1 {
  color: rgba(255, 184, 108, 1)
}

.red h1 {
  color: #ff5555;
}

.yellow h1 {
  color: rgba(241, 250, 140, 1);
}


.blog-wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.blog-content {
  flex: 1;
}

.blog {
  width: 640px;
  padding: 0 2rem;
  margin: 20px auto 0;
}

.blog figure img {
  border: none;
}

.blog h1 {
  font-family: "Source Sans Pro";
  font-weight: 700;
  /*font-size: 3em;*/
  line-height: 1.1em;
}

.blog h2 {
  font-family: "Source Sans Pro";
  font-weight: 700;
  /*font-size: 2.2em;*/
  margin-bottom: 20px;
}

.blog a {
  color: #f8f8f2;
  border-bottom: 2px solid #f8f8f2;
}

.blog ol,
.blog ul,
.page ol,
.page ul {
  font-size: 20px;
  margin: 0 0 20px 30px;
}

.blog ol li,
.blog ul li,
.page ol li,
.page ul li {
  margin-bottom: 5px;
}

blockquote {
  padding: 5px 20px;
  margin-bottom: 12px;
  border-left: 3px solid #44475a;
}

blockquote p {
  display: inline;
}

.cyan h2,
.cyan .comment-submit input[type="text"],
.cyan .comment-submit input[type="email"],
.cyan .comment-submit textarea
	{ color: #8be9fd; }
.green h2,
.green .comment-submit input[type="text"],
.green .comment-submit input[type="email"],
.green .comment-submit textarea
	{ color: #50fa7b; }
.orange h2,
.orange .comment-submit input[type="text"],
.orange .comment-submit input[type="email"],
.orange .comment-submit textarea
	{ color: #ffb86c; }
.red h2,
.red .comment-submit input[type="text"],
.red .comment-submit input[type="email"],
.red .comment-submit textarea
	{ color: #ff5555; }
.pink h2,
.pink .comment-submit input[type="text"],
.pink .comment-submit input[type="email"],
.pink .comment-submit textarea
	{ color: #ff79c6; }
.purple h2,
.purple .comment-submit input[type="text"],
.purple .comment-submit input[type="email"],
.purple .comment-submit textarea
	{ color: #bd93f9; }
.yellow h2,
.yellow .comment-submit input[type="text"],
.yellow .comment-submit input[type="email"],
.yellow .comment-submit textarea
	{ color: #f1fa8c; }

.cyan .comment-submit input[type="submit"] { background: #8be9fd; }
.green .comment-submit input[type="submit"] { background: #50fa7b; }
.orange .comment-submit input[type="submit"] { background: #ffb86c; }
.red .comment-submit input[type="submit"] { background: #ff5555; }
.pink .comment-submit input[type="submit"] { background: #ff79c6; }
.purple .comment-submit input[type="submit"] { background: #bd93f9; }
.yellow .comment-submit input[type="submit"] { background: #f1fa8c; }

.comments, .comment-submit {
  max-width: 640px;
  padding: 0 2rem;
  margin: 20px auto;
}

.comments h4 {
	margin: 0;
}

.comment-header {
  display: flex;
}

.comment-content {
  margin-left: 20px;
  white-space: pre-wrap;
}

.comment-date {
  flex-grow: 100;
  text-align: right;
}

.comment-submit form {
  margin-top: 10px;
}

.comment-submit input, .comment-submit textarea {
  border-radius: 4px;
  font-family: "Source Sans Pro";
  font-size: 15px;
  line-height: 20px;
  padding: 10px;
  border: 0;
  outline: 0;
}

.comment-submit input[type="text"],
.comment-submit input[type="email"],
.comment-submit textarea {
  background: #252525;
}

.comment-submit input[type="submit"] {
  color: #252525;
  cursor: pointer;
}

.blog-updates form {
  display: flex;
  margin-top: 0px;
  overflow: auto;
}

.blog-updates {
  margin: 0px;
  display: flex;
  justify-content: center;
  max-width: 100%;
}

.blog-updates input {
	border-collapse: collapse;
}

.cyan    .blog-updates input { border: 2px solid #8be9fd; }
.green   .blog-updates input { border: 2px solid #50fa7b; }
.orange  .blog-updates input { border: 2px solid #ffb86c; }
.red     .blog-updates input { border: 2px solid #ff5555; }
.pink    .blog-updates input { border: 2px solid #ff79c6; }
.purple  .blog-updates input { border: 2px solid #bd93f9; }
.yellow  .blog-updates input { border: 2px solid #f1fa8c; }

.blog-updates form {
	flex-grow: 1;
}

.blog-updates input[name="email"] {
	min-width: 100px;
	width: 100%; /* minus width of everything else */
}

.blog-updates input[name="antispam"] {
	border-radius: 0px;
	border-left: 0px;
	width: 80px;
}

.blog-updates input[type="submit"] {
	width: 100px;
}

.blog-metadata {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}

.blog-metadata-left {
  display: flex;
  align-items: center;
  font-size: 14pt;
}

.blog-author-avatar {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.blog-author-separator {
  opacity: .5;
  padding: 0 5px;
}

.blog-item {
  margin: 30px 0px;
}

.blog-item a {
  color: #f8f8f2;
}

.blog-item-header {
  display: flex;
  justify-content: space-between;
}

.blog .blog-item-title {
  transition: color .3s linear;
  font-size: 26px;
  font-family: "Source Sans Pro";
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2em;
  width: 100%;
}

.blog-item-date {
  opacity: .7;
  width: 170px;
  text-align: right;
  margin-top: 5px;
}

.blog-item-excerpt {
  font-size: 20px;
  line-height: 24px;
}

/* ==========================================================================
   Microtip
   ========================================================================== */

[aria-label][role~="tooltip"] {
  position: relative;
}

[aria-label][role~="tooltip"]::before,
[aria-label][role~="tooltip"]::after {
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  transition: all .18s ease-in-out 0s;
  position: absolute;
  box-sizing: border-box;
  z-index: 10;
  transform-origin: top;
}

[aria-label][role~="tooltip"]::before {
  background-size: 100% auto !important;
  content: "";
}

[aria-label][role~="tooltip"]::after {
  background: rgba(17, 17, 17, .9);
  border-radius: 4px;
  color: #ffffff;
  content: attr(aria-label);
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
  padding: .5em 1em;
  white-space: nowrap;
  box-sizing: content-box;
}

[aria-label][role~="tooltip"]:hover::before,
[aria-label][role~="tooltip"]:hover::after,
[aria-label][role~="tooltip"]:focus::before,
[aria-label][role~="tooltip"]:focus::after {
  opacity: 1;
  pointer-events: auto;
}

/* Top Position
   ========================================================================== */

[role~="tooltip"][data-microtip-position|="top"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-bottom: 5px;
}

[role~="tooltip"][data-microtip-position|="top"]::after {
  margin-bottom: 11px;
}

[role~="tooltip"][data-microtip-position|="top"]::before {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~="tooltip"][data-microtip-position|="top"]:hover::before {
  transform: translate3d(-50%, -5px, 0);
}

[role~="tooltip"][data-microtip-position|="top"]::after {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~="tooltip"][data-microtip-position="top"]:hover::after {
  transform: translate3d(-50%, -5px, 0);
}

/* Bottom Position
   ========================================================================== */

[role~="tooltip"][data-microtip-position|="bottom"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}

[role~="tooltip"][data-microtip-position|="bottom"]::after {
  margin-top: 11px;
}

[role~="tooltip"][data-microtip-position|="bottom"]::before {
  transform: translate3d(-50%, -10px, 0);
  bottom: auto;
  left: 50%;
  top: 100%;
}

[role~="tooltip"][data-microtip-position|="bottom"]:hover::before {
  transform: translate3d(-50%, 0, 0);
}

[role~="tooltip"][data-microtip-position|="bottom"]::after {
  transform: translate3d(-50%, -10px, 0);
  top: 100%;
  left: 50%;
}

[role~="tooltip"][data-microtip-position="bottom"]:hover::after {
  transform: translate3d(-50%, 0, 0);
}

 /* ==========================================================================
   Fonts
   ========================================================================== */

@font-face {
  font-family: 'Source Sans Pro';
  src: url('/fonts/SourceSansPro-Light.woff2') format('woff2'),
       url('/fonts/SourceSansPro-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('/fonts/SourceSansPro-Regular.woff2') format('woff2'),
       url('/fonts/SourceSansPro-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('/fonts/SourceSansPro-Bold.woff2') format('woff2'),
       url('/fonts/SourceSansPro-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fira Code';
  src: url('/fonts/FiraCode-Regular.woff2') format('woff2'),
       url('/fonts/FiraCode-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fira Code';
  src: url('/fonts/FiraCode-Medium.woff2') format('woff2'),
       url('/fonts/FiraCode-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fira Code';
  src: url('/fonts/FiraCode-Bold.woff2') format('woff2'),
       url('/fonts/FiraCode-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.topbar nav {
  background-color: #44475a;
  height: 50px;
  padding: 5px;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 10px 0 rgba(0,0,0,.15);
  justify-content: space-between;
  border-radius: 5px;
  margin: 5px;
}

.topbar div {
	position:fixed;
	width:100%;
	z-index:1
}

.topbar-button {
	transition:all .3s ease-in-out;
	margin-left:5px;
	margin-right:5px;
	display:inline-block;
	border-radius:4px;
	text-align:center;
	color:#000000;
	font-weight:400;
	padding:10px 18px;
	font-size:18px;
	border:0
}

.topbar-button.left {
	background: #8be9fd;
}

.topbar-button.middle {
	background: #ff79c6;
}

.topbar-button.right {
	background: #f8f8f2;
}

.topbar-button:focus,.topbar-button:hover{
	color: #000000 !important;
}

.topbar-button.left:focus,.topbar-button.left:hover{
	background: rgba(139, 233, 253, .8);
}

.topbar-button.middle:focus,.topbar-button.middle:hover{
	background: rgba(255, 121, 198, .8);
}

.topbar-button.right:focus,.topbar-button.right:hover{
	background: rgba(248, 248, 242, .8);
}

.music-item {
  display: flex;
  margin-top: 15px;
  margin-bottom: 15px;
}

.music-art {
  width: 420px;
  min-width: 150px;
  object-fit: contain;
}

div.music-art {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.music-art img, img.music-art {
  max-width: 100%;
  align-self: center;
}

p.music-art-caption {
  text-align: right;
  /*height: 0px;*/
  margin: 2px;
}

.music-links {
  margin-left: 7%;
  margin-top: 24px;
  margin-bottom: 24px;
  width: 360px;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  flex-shrink: 2;
}

.music-links .predatory-services {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-shrink: 2;
  max-width: 360px;
}

.music-links .predatory-services a {
  width: 12%;
  min-width: 32px;
}

.music-links .predatory-services img {
  width: 100%;
}

.music-links a {
  margin-top: 8px;
  margin-bottom: 8px;
  border-bottom: none !important;
  display: flex;
  align-items: center;
}

.music-links img {
  width: 12%;
  min-width: 24px;
  max-width: 48px;
  margin-right: 24px;
  object-fit: contain;
  vertical-align: middle;
}

.music-links h2 {
  color: #bd93f9;
  margin: 10px 0 10px 0;
}

.music-links p {
  font-size: 24px;
  margin-top: auto;
  margin-bottom: auto;
  vertical-align: middle;
}

.banner img {
	width: 100vw;
	margin: -20px 0 0 0;
}

.blog-categories {
	margin-top: 60px;
}

.blog-category {
	min-width: 40px;
	min-height: 80px;
	background: rgb(26, 27, 34);
	border-radius: 20px;
	margin: 20px;
	text-align: center;
}

.blog-category:hover {
	background: #282a36;
}

.blog-category h2 {
	margin: 25px;
	display: inline-block;
}

.content-warning {
	padding: 10px;
	margin: 10px 0px;
	border-radius: 10px;
	color: #ffb86c;
	border: 2px solid #ffb86c;
}

.content-warning p {
	margin: 0px;
	text-align: center;
}

details.dropdown {
	border: 3px solid #44475a;
	border-radius: 5px;
	margin-bottom: 20px;
}

.dropdown summary {
	background: #44475a;
	padding: 10px;
}

.dropdown summary:hover {
	cursor: pointer;
}

.dropdown .content {
	padding: 10px;
	margin-bottom: -20px;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.all-tags {
	margin: 30px 0px;
}

.post-tags {
	margin-left: 20px;
}

.blog-tag-return {
	margin: 20px 0px;
}

/* should go at the end, after everything it applies to */

@media (max-width: 420px) {
  nav ul li a {
    font-size: 15px;
    margin-left: 15px;
  }
}


@media (max-width: 440px) {
  .blog-updates input[name="email"] {
    min-width: 80px;
    padding: 5px;
  }

  .blog-updates input[name="antispam"] {
    width: 40px;
    padding: 5px;
  }

  .blog-updates input[type="submit"] {
    width: 80px;
    padding: 5px;
  }
}

@media (max-width: 840px) {
  .page {
    width: auto;
  }

  .views {
    float: none;
    margin: 20px 0;
  }
}

@media (max-width: 640px) {
  .blog {
    width: auto;
  }

  .blog-item-header {
    flex-direction: column;
    align-items: baseline;
  }

  .blog-item-date {
    text-align: left;
    margin-top: 0px;
  }
}

@media (max-width: 480px) {
	.topbar-button {
		margin-right: 2px;
		margin-left: 2px;
		padding: 8px 10px;
	}
}
