
body {
  color: #aaa;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #112;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  letter-spacing: 0.02em;
  background-image: url("noisy-texture-300x300-o18-d59-c-0d0133-t1.png");
}

main {
  width: 75vw;
  margin: 0 auto 10rem;
}

@media screen and (max-width: 50rem) {
  main {
    width: inherit;
    margin: 0.5rem;
  }
}

/*
main::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-image: url("noisy-texture-300x300-o32-d59-c-0d0133-t1.png");
  -webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
  mask-image: linear-gradient(from top, to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  z-index: -1;

}
*/

/* https://9elements.com/blog/creating-an-animated-svg-neon-light-effect/ */
@keyframes flicker {
  0%    { fill: #fff; }
  3%    { fill: #112 }
  6%    { fill: #fff; }
  7%    { fill: #112; }
  8%    { fill: #fff; }
  9%    { fill: #112; }
  10%   { fill: #fff; }
  89%   { fill: #fff; }
  90%   { fill: #112; }
  100%  { fill: #112; }
}
@keyframes flickerOp {
  0%    { opacity: 1; }
  1%    { opacity: 0.4; }
  2%    { opacity: 1; }
  2.33%    { opacity: 0.4; }
  2.66%    { opacity: 1; }
  3%    { opacity: 0.4; }
  3.33%   { opacity: 1; }
  96%   { opacity: 1; }
  96.33%   { opacity: 0.4; }
  100%  { opacity: 0.4; }
}

main > header > img {
  height: 100vh;
  max-width: 100%;
  animation: flickerOp 6s infinite;
}

@media screen and (max-width: 50rem) {
  main > header > img {
    height: auto;
    margin: 1rem 0 2rem;
  }
}

article header {
  display: flex;
  align-items: baseline;
}

h1 {
  display: block;
  color: #eee;
  font-family: "Yellowtail", cursive;
  font-weight: 400;
  text-align: center;
  font-size: 8rem;
  margin: 1.5em 0;
}

@media screen and (max-width: 50rem) {
  h1 {
    font-size: 3.5rem;
  }
}

.neonText, .neonText span {
  color: #fff;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #5271ff, 0 0 82px #5271ff, 0 0 92px #5271ff, 0 0 102px #5271ff,
    0 0 151px #5271ff;
}

h2 {
  color: #eee;
  font-weight: normal;
  font-size: 3rem;
  margin: 0;
}


@media screen and (max-width: 50rem) {
  h2 {
    font-size: 1.5rem;
  }
}

.date {
  margin: 0;
  margin-left: 1rem;
  color: #bbb;
}

.description {
  width: 31.25vw;
}

@media screen and (max-width: 50rem) {
  .description {
    width: initial;
  }
}

.description > *:first-child {
  margin-top: 0;
}
article {
  margin-bottom: 6.25vw;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 0;
  flex-grow: 1;
  justify-content: center;
}

@media screen and (max-width: 50rem) {
  .gallery {
    margin: 0 -0.5rem;
  }
}

.gallery img {
  object-fit: cover;
  width: 25vw;
  height: 25vw;
  margin: 0;
  padding: 0;
  display: block;
}
.icon {
  width: 2rem;
  margin-right: 0.75rem;
}

@media screen and (max-width: 50rem) {
  .gallery img {
    width: 33.33333vw;
    height: 33.33333vw;
  }
}

.map {
  width: 75vw;
  height: 50vw;
  margin: 0;
  padding: 0;
  outline: 0;
}

@media screen and (max-width: 50rem) {
  .map {
    margin: 0 -0.5rem;
    padding: 0;
    height: 75vw;
    width: 100vw;
  }

  .map.leaflet-fullscreen-on {
    margin: 0;
  }
}

svg path.test {
  filter: drop-shadow(0 0 100px #5271ff);
  stroke: #112;
}

.destroy {
  font-size: 4.5vw;
  hyphens: auto;
  line-height: 1;
  width: auto;
  /*background-color: #112;*/
}

.destroy .cite {
  text-align: right;
  display: block;
  font-size: 1rem;
  margin-top: 0.5rem;
}

@media screen and (max-width: 50rem) {
  .destroy {
    font-size: 2rem;
  }
}

a {
  color: #aaa;
  text-decoration-color: #2e4bcd;
  text-decoration-thickness: 0.13em;
}

a:hover, a:focus {
  text-decoration-color: #ff52f6;
}


blockquote {
  margin: 0;
  font-size: 2rem;
  position: relative;
  width: 66.666%;
  box-sizing: border-box;
}
blockquote.right {
  margin-left: 33.333%;
}
@media screen and (max-width: 50rem) {
  blockquote {
    font-size: 1.3rem;
    width: auto;
  }
}

.youtube {
  position: relative;
}
.youtube::after {
  content: "";
  width: 25vw;
  height: 25vw;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("images/youtube.svg");
  background-repeat: no-repeat;
  background-size: 7vw;
  background-position: center;
  opacity: 0.7;

}

@media screen and (max-width: 50rem) {
  .youtube::after {
    width: 33.33333vw;
    height: 33.33333vw;
    background-size: 10vw;
  }
}

.youtube:hover::after {
  opacity: 1;
}

.show {
  display: flex;
  font-size: 2rem;
  align-items: end;
}

.show img {
  width: 25vw;
  height: 25vw;
  object-fit: cover;
  display: block;
}

.show div {
  padding: 1rem 2rem;
  box-sizing: border-box;
  /*background-color: rgb(24, 24, 36);*/
}
.show.right {
  margin-left: 25vw;
}

.show p {
  margin: 0vw 0;
}

.show a {
  white-space: nowrap;
}



.show .video-description {
  margin-top: 3vw;
}

.pswp__leaflet-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.pswp__leaflet-container .leaflet-container {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 50rem) {
  .show, .show.right {
    margin: 1rem -0.5rem;
  }
  .show.right {
    flex-direction: row-reverse;
    text-align: right;
  }
  .show img {
    width: 33.33333vw;
    height: 33.33333vw;
  }
  .show div {
    padding: 0rem 1rem;
    font-size: 0.8rem;
    width: 66.66666vw;
    height: auto;
  }
  .show h2 {
    font-size: 1rem;
  }
  .show .video-description {
    margin-top: 0rem
  }
}

.hidden {
  display: none;
}
