/* http://meyerweb.com/eric/tools/css/reset/ */
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; box-sizing: border-box; vertical-align: baseline; } 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; }

html {
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
}

body {
  height: 100%;
}

html, body {
  background: black;
  color: white;
  line-height: 1.4;
  font-family: sans-serif;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 0.9em;
}

em {
  font-style: italic;
}

h2 {
  font-size: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: inherit;
  color: inherit;
  border: none;
  background: inherit;
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: inherit;
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

p a {
  text-decoration: underline;
}

.sc {
  max-width: 100%;
  width: 100%;
  height: 166px;
  position: fixed;
  bottom: -166px;
  left: 0;
  background: lightgray;
  z-index: 1000;
  box-shadow: none;
  opacity: 0;
  transition: bottom 0.2s ease-out, box-shadow 0.2s ease-out, opacity 0.2s ease-out;
}
body.is-player-playing .sc {
  opacity: 1;
  bottom: 0;
  box-shadow: 0 -20px 50px black;
}

.footer {
  min-height: 10rem;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  opacity: 0.5;
  text-align: center;
  font-size: 0.7rem;
}
.footer a {
  border-bottom: 1px dotted;
}

.is-flickering {
  -webkit-animation: flicker 0.1s linear 2;
          animation: flicker 0.1s linear 2;
}

.back-to-top {
  font-size: 0.8rem;
}

.js-info {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  -webkit-animation: fadeIn 2s forwards;
          animation: fadeIn 2s forwards;
}
.js-info p {
  font-size: 0.8rem;
  text-align: center;
  display: block;
  border: 1px solid lightgray;
  background: black;
  border-radius: 3px;
  padding: 0.8rem 1rem;
  margin: 1rem;
}
.some-js .js-info p.some {
  display: block;
}
.some-js .js-info p.none {
  display: none;
}
.no-js .js-info p.none {
  display: block;
}
.no-js .js-info p.some {
  display: none;
}
.js .js-info {
  display: none;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hexgrid {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vmin;
  height: 100vh;
  margin: 0 auto;
}

.hex-container:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.hex-container {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin-top: 10%;
  transform: translate(1%, 15%);
  pointer-events: none;
}

.hex {
  position: absolute;
  width: 18.5%;
  height: 18.5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hex.has-image {
  pointer-events: all;
  cursor: pointer;
}
.hex.has-image:hover {
  opacity: 0.8;
}
.hex:not(.has-image) {
  pointer-events: none;
}
body.hex-is-selected .hex:not(.is-selected) {
  -webkit-animation: fadeOut 0.8s;
          animation: fadeOut 0.8s;
  opacity: 0.5;
}
body.hex-is-selected .hex:not(.is-selected):hover {
  opacity: 1;
}
.hex.is-selected {
  -webkit-animation: flicker 0.1s linear 2;
          animation: flicker 0.1s linear 2;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.5;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.5;
  }
}
@-webkit-keyframes flicker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.5;
  }
}
@keyframes flicker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.5;
  }
}
.hex img {
  max-width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s linear;
}
.hex img.has-loaded {
  opacity: 1;
}

.loader {
  display: block;
  width: 10%;
  height: 10%;
  border-radius: 50%;
  background: white;
  position: absolute;
  filter: blur(5px);
}
.image-has-loaded .loader {
  display: none;
}

.article {
  padding: 0 1rem;
  letter-spacing: -0.05ch;
  margin-bottom: 6rem;
  padding-bottom: 2rem;
  position: relative;
  display: flex;
  justify-content: center;
}
@media (max-width: 860px) {
  .article {
    flex-direction: column;
    align-items: center;
  }
  .article .article__image {
    margin-right: 0;
  }
}
.article blockquote {
  margin-left: 2rem;
}
.article__image {
  max-width: 270px;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
  margin-right: 3rem;
}
.article__image__container {
  cursor: pointer;
  position: relative;
}
.article__image__container::after {
  content: "PLAY";
  font-size: 2rem;
  text-shadow: 0 0 10px black;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.article__image__container:hover img {
  opacity: 0.5;
}
.article__image__container:hover::after {
  display: block;
}
.article__meta {
  margin-top: 2rem;
}
.article__meta__element {
  border-bottom: 1px solid lightgray;
  font-size: 0.8rem;
  height: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article__meta__element span {
  margin-bottom: 0;
}
.article__meta__element span:first-child {
  opacity: 0.7;
}
.article__meta__element button {
  width: 100%;
  cursor: pointer;
  text-align: right;
}
.article__meta__element:last-child {
  border: none;
  text-align: right;
}
.article__text {
  max-width: 70ch;
}
.article__text * + * {
  margin-top: 1rem;
}
