@import url(https://fonts.googleapis.com/css?family=Gabriela|Dosis:200);
body {
  font-smoothing: subpixel-antialiased;
  font-family: 'Dosis', sans-serif;
  background: #333;
  margin: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

a {
  transition: color 300ms ease-out;
  text-decoration: none;
  color: #fff;
}

.container {
  position: absolute;
  height: 100%;
  width: 100%;
}

nav ul {
  position: absolute;
  list-style: none;
  bottom: 50px;
  right: 50px;
  padding: 0;
  margin: 0;
}

nav ul li {
  color: #FFF;
  text-align: right;
  cursor: default;
}

nav ul li small {
  color: rgba(255, 255, 255, 0.7);
  margin: 5px 0;
  display: block;
}
nav ul li small:last-child {
  margin-bottom: 15px;
}

nav ul li a {
  transition: opacity 300ms ease-out;
  text-transform: uppercase;
  padding: 0.25em 0;
  letter-spacing: 2px;
  font-weight: 300;
  font-size: 12px;
  display: block;
  width: 100%;
  opacity: 0.4;
}

nav ul li a:hover {
  opacity: 1;
}

#lightbox {
  box-sizing: border-box;
  position: absolute;
  height: 100vh;
  width: 100vw;
  visibility: hidden;
  padding: 10vh 10vw 25vh 10vw;
}

#lightbox.active {
  visibility: visible;
}

#lightbox section {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.3);
  color: rgb(204, 204, 204);
  overflow-x: auto;
  height: 65vh;
  width: 80vw;
  padding: 3vw;
}

#lightbox section p {
  margin-top: 0;
}

@media all and (min-width: 480px) {
  #lightbox {
    font-size: 16px;
    padding: 20vh 20vw;
  }
  #lightbox section {
    height: 60vh;
    width: 60vw;
    padding: 1.5vw;
  }
}