@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a,
code, em, img, small, strike, strong, sub, sup,
tt, b, u, i, ol, ul, li, fieldset, form, label,
table, caption, tbody, tfoot, thead, tr, th, td,
main, canvas, embed, footer, header, nav,
section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

svg {
  color: inherit; /* fix Chrome not cascading color */
}

/* Text */
/* Links */
/* Buttons */
/* Bootstrap-like styles */ /* Text */
/* Links */
/* Buttons */
.d-none {
  display: none;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.flex-wrap {
  flex-wrap: wrap;
}

.ml-auto {
  margin-left: auto;
}

.cover {
  object-fit: cover;
}

.btn, .btn:visited {
  background-color: #ec5113;
  color: hsl(36, 11%, 91%);
  border-radius: 3px;
  padding: 3px 16px;
}

.btn:hover {
  background-color: hsl(17, 85%, 60%);
  text-decoration: none;
  color: hsl(36, 11%, 91%);
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.h-25 {
  height: 25%;
}

.w-25 {
  width: 25%;
}

.h-50 {
  height: 50%;
}

.w-50 {
  width: 50%;
}

.h-75 {
  height: 75%;
}

.w-75 {
  width: 75%;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.mt-0 {
  margin-top: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.mt-1 {
  margin-top: 10px;
}

.mr-1 {
  margin-right: 10px;
}

.mb-1 {
  margin-bottom: 10px;
}

.ml-1 {
  margin-left: 10px;
}

.mx-1 {
  margin-left: 10px;
  margin-right: 10px;
}

.my-1 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mr-2 {
  margin-right: 20px;
}

.mb-2 {
  margin-bottom: 20px;
}

.ml-2 {
  margin-left: 20px;
}

.mx-2 {
  margin-left: 20px;
  margin-right: 20px;
}

.my-2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mr-3 {
  margin-right: 30px;
}

.mb-3 {
  margin-bottom: 30px;
}

.ml-3 {
  margin-left: 30px;
}

.mx-3 {
  margin-left: 30px;
  margin-right: 30px;
}

.my-3 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mr-4 {
  margin-right: 40px;
}

.mb-4 {
  margin-bottom: 40px;
}

.ml-4 {
  margin-left: 40px;
}

.mx-4 {
  margin-left: 40px;
  margin-right: 40px;
}

.my-4 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.mr-5 {
  margin-right: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.ml-5 {
  margin-left: 50px;
}

.mx-5 {
  margin-left: 50px;
  margin-right: 50px;
}

.my-5 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.mt-6 {
  margin-top: 60px;
}

.mr-6 {
  margin-right: 60px;
}

.mb-6 {
  margin-bottom: 60px;
}

.ml-6 {
  margin-left: 60px;
}

.mx-6 {
  margin-left: 60px;
  margin-right: 60px;
}

.my-6 {
  margin-top: 60px;
  margin-bottom: 60px;
}

/* 5 column layout using % widths */
.col-1 {
  width: 20%;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.col-2 {
  width: 40%;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.col-3 {
  width: 60%;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.col-4 {
  width: 80%;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.col-5 {
  width: 100%;
  flex: 0 0 auto;
  box-sizing: border-box;
}

body {
  color: hsl(36, 11%, 91%);
  font-family: "Jost", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  background-color: #000;
}

p {
  margin: 18px 0;
}

#header {
  padding: 80px 0 0;
  margin: 0 -20px;
  background-image: url(/images/australia-from-space.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.header-bg {
  background-color: hsla(10, 0%, 0%, 0.8);
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.byline {
  color: hsl(36, 5%, 60%);
  font-size: 16px;
  max-width: 300px;
}

.header-logo {
  margin: -40px 20px 10px;
}

.header-logo img {
  border-radius: 8px;
  vertical-align: top;
  height: 75px;
  width: 75px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

.header-title,
.header-logo,
.header-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-nav {
  padding: 20px 0 10px;
}

.header-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#footer {
  font-size: 16px;
  margin: 30px 0 30px;
  color: hsl(36, 5%, 60%);
}

.social-links a {
  color: hsl(36, 5%, 60%);
  margin-left: 20px;
}

.social-links a:hover {
  color: hsl(36, 11%, 91%);
  text-decoration: none;
}

#container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 10px;
}

#content {
  margin: 20px 0;
}

article {
  margin: 20px 0 40px;
}

article:after {
  content: "・ • ・";
  display: block;
  text-align: center;
  margin-top: 20px;
  font-family: Arial, sans-serif;
  color: hsl(36, 5%, 60%);
}

/* Headings */
h1 a, h1 a:visited {
  color: hsl(36, 11%, 91%);
  text-decoration: none;
}

h1 {
  font-size: 26px;
  font-weight: 200;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 22px;
}

/* Text styles */
em {
  font-style: italic;
}

strong {
  font-weight: 600;
}

/* Links */
a {
  color: hsl(17, 85%, 60%);
  text-decoration: none;
}

a:visited {
  color: hsl(17, 85%, 60%);
}

a:hover {
  color: hsl(17, 50%, 60%);
  text-decoration: underline;
  transition-property: color;
}

/* Article formats */
article > * {
  margin-top: 12px;
}

article .meta {
  color: hsl(36, 5%, 60%);
  font-size: 14px;
  font-weight: 300;
  margin-top: 0;
}

/* Lists */
#content ul, #content ol {
  margin-bottom: 18px;
}

#content ul {
  list-style-type: disc;
  margin-left: 20px;
}

#content ol {
  list-style-type: decimal;
  margin-left: 28px;
}

/* Images */
#content img {
  max-width: 100%;
}

/* Post (episode) styles */
.post article h3 a {
  color: hsl(36, 11%, 91%);
}

.post-content-title {
  font-weight: 600;
  font-size: 14px;
  margin: 20px 0 12px;
  color: hsl(204, 60%, 60%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Page styles */
.page-content h3 {
  color: hsl(204, 60%, 60%);
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 5px;
}

h2 {
  margin: 20px 0 10px;
  padding: 5px 0;
  border-bottom: 1px solid hsl(36, 5%, 60%);
}

@media only screen and (min-width: 480px) {
  #container {
    padding: 0 20px;
  }
  .header-bg {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 0;
  }
  .header-logo {
    margin-top: 0;
    margin-bottom: 0;
  }
  .header-nav ul {
    justify-content: end;
  }
  h2 {
    font-size: 24px;
  }
  article .meta {
    font-size: 20px;
  }
}
@media only screen and (min-width: 720px) {
  .header-nav {
    margin-left: auto;
  }
}

/*# sourceMappingURL=main.css.map */