html {
  overflow-y: scroll;
  background-color: #000;
}

body {
  background-color: #111;
  font-size: 15px;
  font-family: "Ubuntu Mono", monospace;
  margin: 0;
  overflow-y: auto;
  color: #ddd;
}
body * {
  background-color: transparent;
}
* {
  box-sizing: border-box;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
}

#title {
  margin: 2em 0 0;
  padding: 0.5em 0;
  padding-left: 30px;
}
#title > div {
  width: 12px;
  display: inline-block;
  position: relative;
  z-index: 1;
  background-color: #000;
}
#title > .vowel {
  /*color: #D59;*/
  color: #555;
  margin-left: -12px;
  font-weight: normal;
  z-index: 0;
}
#title:hover > .vowel {
  margin-left: 0;
}
li.title {
  padding-left: 0;
}

#container {
  margin: 0 auto;
  max-width: 200px;
  margin-bottom: 8em;
  position: relative;
}
ul {
  padding-left: 0;
}
li {
  list-style: none;
  position: relative;
  padding-left: 30px;
}
li > p {
  width: 300px;
  max-height: 0;
  margin: 0;
  margin-left: -80px;
  overflow: hidden;
  text-align: justify;
}
li.open > p {
  max-height: 200px;
  margin-top: 1em;
  margin-bottom: 1em;
}
li > a {
  position: relative;
}
a:link,
a:visited,
a:active {
  /*color: #D59;*/
  color: #555;
  /*text-decoration: none;*/
}
a:hover {
  color: #ddd;
  text-decoration: underline;
}
li > .bullet {
  width: 16px;
  height: 16px;
  line-height: 18px;
  border-radius: 50%;
  position: absolute;
  left: 7px;
  top: 1px;
  cursor: pointer;
  z-index: 1;
  /*made bigger for invisible hitbox*/
  width: 30px;
  height: 20px;
  left: 0;
}
.bullet:hover {
  /*color: #d59;*/
  color: #555;
}

.bullet:after {
  content: "";
  line-height: 15px;
  position: absolute;
  color: #d59;
  color: #555;
  font-size: 17px;
  width: 100%;
  text-align: center;
  z-index: 2;
}
.mobile .bullet:after {
  content: "?";
}
li:hover > .bullet:after {
  content: "?";
}
li.open > .bullet:after {
  line-height: 11px;
  content: "x";
}
li .img-container {
  text-align: center;
  width: 300px;
  height: 0;
  margin: 0;
  margin-left: -80px;
  z-index: 2;
  position: relative;
  overflow: hidden;
  display: none !important;
}
li.open .img-container {
  margin-top: 1em;
  margin-bottom: 1em;
  height: 49px;
}
li.open:not(.animating) .img-container {
  overflow: visible;
}
li .img-anchor {
  width: 49px;
  height: 49px;
  position: relative;
  display: inline-block;
}
.img-anchor img {
  width: 49px;
  height: 49px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: -2;
}
.img-anchor:hover img {
  width: 70vh;
  height: 70vh;
}

li {
  z-index: 0;
}
li:hover {
  z-index: 1;
}
.img-anchor.attention {
  z-index: 1;
}
.img-anchor.attention img {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.img-anchor > .img {
  width: 49px;
  height: 49px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: -2;
  background-position: 50% 50%;
}
.img-anchor:hover .img {
  width: 70vh;
  height: 70vh;
}
.img-anchor.attention .img {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

#networks {
  width: 100%;
  padding-left: 30px;
}
#networks a {
  color: #555;
  position: relative;
  transition: none;
  -webkit-transition: none;
  text-decoration: none;
}
#networks a:hover {
  /*color: #D59;*/
  color: #ddd;
}
.symbol {
  font-size: 200%;
  margin-left: -5px;
}
a.symbol:before {
  content: attr(title);
  margin-right: 0.3em;
  font-size: 200%;
}
@font-face {
  font-family: "Mono Social Icons Font";
  src: url("../fonts/MonoSocialIconsFont-1.10.eot");
  src: url("../fonts/MonoSocialIconsFont-1.10.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/MonoSocialIconsFont-1.10.woff") format("woff"),
    url("../fonts/MonoSocialIconsFont-1.10.ttf") format("truetype"),
    url("../fonts/MonoSocialIconsFont-1.10.svg#MonoSocialIconsFont") format("svg");
  src: url("../fonts/MonoSocialIconsFont-1.10.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.symbol,
a.symbol:before {
  font-family: "Mono Social Icons Font";
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
