@import url(//fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400&display=swap);

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	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;
}

/* Global */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  background: transparent url(/images/bg-space.jpg) no-repeat fixed;
  background-size: cover;
  font: 15px 'Roboto Mono', serif;
  font-weight: 400;
  line-height: 1.5;
}

.container {
  margin: 15px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .container {
    max-width: 620px;
    margin: 40px;
    padding: 40px;
  }
}

@media (min-width: 960px) {
  .container {
    margin: 60px;
    padding: 60px;
  }
}

a {
  text-decoration: none;
  transition: all 0.2s;
}

p {
  font-weight: 300;
}

/* Nav */
nav {
  display: flex;
  flex-wrap: wrap;
}

nav a {
  display: inline-block;
  padding: 3px 8px 5px;
  background: #000;
  color: #fff;
  text-transform: lowercase;
}

@media (max-width: 767px) {
  nav a {
    width: 100%;
    margin: 0 0 10px;
  }

  nav a:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  nav a {
    width: auto;
    margin: 0 1em 0 0;
  }
}

nav a:hover,
nav a:focus {
  color: #948484;
}

/* Headings */
h1,
h2 {
  display: inline-block;
  padding: 3px 8px 5px;
  background: #000;
  color: white;
  text-transform: lowercase;
}

h1 a {
  color: inherit;
}

h1 span::before {
  content: ' - ';
}

h1 + p {
  margin: 20px 0 0;
  text-transform: lowercase;
}

h2 {
  margin-top: 30px;
}

p + ul {
  margin-top: 30px;
}

/* Lists */
ul {
  border-left: 1px solid black;
  padding-top: 30px;
}

ul li {
  padding-bottom: 10px;
}

ul li:last-child {
  padding-bottom: 0;
}

ul a {
  display: inline-block;
  padding: 3px 8px 5px;
  background: #000;
  border-left: 4px solid #948484;
  color: white;
  text-decoration: none;
  text-transform: lowercase;
}

ul a:hover,
ul a:focus {
  color: #948484;
}

ul small {
  display: block;
  margin: 3px 0 0 12px;
  font-size: 0.75em;
}

@media (min-width: 768px) {
  ul small {
    display: inline;
    margin: 0 0 0 10px;
    vertical-align: top;
  }
}

/** Content */
.subtitle {
  margin: 1em 0;
}

iframe {
  width: 100%;
  height: 120px;
  margin: 30px 0;
}

article {
  padding-top: 24px;
  padding-left: 8px;
  border-left: 1px solid black;
}

article p {
  margin-bottom: 1em;
}

article :last-child {
  margin-bottom: 0;
}

article a {
  color: inherit;
  text-decoration: underline;
}