.lb-slides {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  z-index: 4;
  transition: display 0.5s;
}

.lb-slides > h5,
.lb-slides > p {
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.lb-slides > p {
  color: white;
  font-size: 90%;
}

.lb-slides > h5 {
  font-weight: bold;
  color: #f0f0f0;
}

@keyframes fading {
  0% { opacity: 0 }
  100% { opacity: 1 }
}

.lb-slides > img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  /* TODO: Just 'width', and be sure to upload the correct widths */
  max-width: 900px;
  min-width: 500px;
  animation: fading .5s 1;
}

.lb-thumbnails > img {
  border-radius: 10%;
  transition: box-shadow 0.3s;
}

.lb-thumbnails > img:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
}

.lb-buttons {
  z-index: 5;
  display: none;
  position: fixed;
  top: 30px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.lb-buttons > div {
  display: inline-block;
  width: 100px;
  color: white;
  opacity: 0.8;
  position: relative;
  text-align: center;
}

.lb-prev,
.lb-next {
  font-family: "Cutive Mono", Sans-serif;
}

.lb-buttons > div:hover {
  opacity: 1;
  transition: opacity 0.3s;
  transition: background-color 1s;
  background-color: #888;
}
