* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  height: 100%;
  min-height: 100%;
}
body {
  background-size: cover;
  background: mediumturquoise;
  font-family: Verdana, sans-serif;
  font-size: 1.1em;
  color: white;
  overflow: hidden;
}
a {
  text-decoration: none;
  color: greenyellow;
  transition: color .3s;
}
a:hover {
  color: #ffdf2f;
}
.header,
footer {
  width: 100%;
  z-index: 5;
  position: fixed;
  font-size: 1.3em;
}
.header h1,
footer h1,
.header nav,
footer nav {
  display: inline-block;
}
.header {
  top: 0;
  height: 3rem;
  background-color: mediumturquoise;
  font-style: italic;
}
.header h1 {
  height: 100%;
  margin: 0 1rem;
  line-height: 1;
  font-size: 2em;
  text-transform: uppercase;
  cursor: default;
  text-shadow: -0.05em 0px 1px gold, -0.1em 0px 1px orange, -0.2em 0px 1px orangered;
  transition: text-shadow 0.3s ease-in-out;
}
.header:hover h1 {
  text-shadow: 0.1em 0px 5px gold, 0.2em 0px 5px orange, 0.35em 0px 5px orangered;
}
.header a.main {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: inline-block;
  padding-top: 1rem;
  padding-left: 7rem;
}
@media screen and (max-width: 37em) {
  .header a.main {
    padding-left: 6.5rem;
  }
}
footer {
  bottom: 0;
  z-index: 20;
  height: 2rem;
  background-color: mediumturquoise;
}
footer nav {
  display: block;
}
footer nav ul {
  text-align: center;
}
nav ul {
  list-style-type: none;
}
nav li {
  display: inline-block;
}
nav li + li:before {
  position: relative;
  right: .25em;
  bottom: .1em;
  content: "|";
  vertical-align: middle;
  font-size: .6em;
  color: white;
  padding: 1em;
}
nav a {
  color: white;
}
nav a:hover {
  color: gold;
}
hr {
  border: none;
  border-top: 1px solid gold;
  margin-bottom: 1rem;
}
#bg {
  height: 100%;
  overflow: hidden;
  background-color: whitesmoke;
}
#bg .inner {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
#bg iframe {
  position: relative;
  border: none;
  overflow: hidden;
}
article.main {
  position: absolute;
  top: 0;
  left: -120vw;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: transparent;
  transition: left .3s;
}
article.main a.home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  z-index: 10;
  color: transparent;
  opacity: 0;
}
article.main .content {
  position: absolute;
  top: 3rem;
  left: 16.6vw;
  max-width: 100vw;
  z-index: 15;
  background-color: #ff5886;
  padding: 0 2rem;
  overflow-y: scroll;
  transition: left .2s .2s;
}
@media screen and (max-width: 37em) {
  article.main .content {
    left: 0;
    padding: 0 1rem;
  }
}
article.main .content header {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: .75rem 0 .75rem;
  background: inherit;
}
article.main .content header .close {
  position: absolute;
  top: 0;
  right: -1rem;
  padding: .75rem;
  transform: scaleX(1.2);
}
@media screen and (max-width: 37em) {
  article.main .content header .close {
    right: -0.5rem;
  }
}
article.main:target {
  left: 0;
}
article.main:target .content {
  height: calc(100% - 5rem);
  transition: left .5s;
}
article.main:target a.home {
  opacity: .001;
}
.tags {
  margin-left: 3em;
  float: right;
  color: gold;
}
.tags,
.tags > * {
  display: inline;
}
.tags > * {
  float: right;
}
.tags > * {
  opacity: .9;
}
.tags > *:first-of-type {
  opacity: 1;
}
.tags > *:not(:last-of-type)::before {
  content: "|";
  font-size: .5em;
  margin: 0 .7em;
  position: relative;
  bottom: .2em;
}
.caption time {
  min-width: 5em;
  display: inline-block;
  font-size: 1.1em;
}
.news .item {
  margin: .5em 0 2em .5em;
}
.item + .caption {
  border-top: 1px solid gold;
  padding-top: 1em;
}
.year {
  display: block;
  font-size: 1.1em;
  margin-bottom: .5em;
}
blockquote {
  font-style: italic;
  margin: .5em;
}
blockquote::before {
  content: "» ";
}
blockquote::after {
  content: " « ";
}
