
#lightboxBackground {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#displayContainer {
  display: none;
  position: fixed;
  background: rgba(0,0,0,0.85);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  /* next two settings set the div centered vertically */
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 30px;
  box-shadow: 0 10px 25px #202020;
  color: #fff;
}

#displayContainer a {
  color: #fff;
  text-decoration: none;
}

#imgContainer {
  width: 60%;
  float: left;
}

#imgContainer img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.break { clear: both; }

#textContainer {
  float: left;
  width: 35%;
  height: 100%;
  margin-left: 10px;
  padding-left: 10px;
}

#textContainer h2 { margin-top: 0; }
