body,
html {
  background-color: black;
  margin: 0;
  height: 100%;
  display: block;
  color: white;
}
.carousel-section {
  background-color: black;
  position: relative;
  display: block;
}
.highlight {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 2%;
}
.highlight .about {
  margin: 0 auto;
  max-width: 80%;
}
.highlight .name {
  margin: 5px auto;
  max-width: 75%;
}
.highlight .image-container img {
  height: auto;
  max-height: 400px;
  width: auto;
}
@media only screen and (max-width: 1024px) {
  .highlight .image-container img {
    max-width: 95%;
  }
}
.carousel {
  background-color: white;
  margin: 0 8.5%;
}
.carousel .carousel-track {
  width: 100%;
}
.carousel .carousel-track .carousel-item {
  height: 25%;
  border: black 1px solid;
  cursor: zoom-in;
  position: relative;
}
.carousel .carousel-track .carousel-item.active:before {
  content: 'Viewing';
  position: absolute;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 101%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.carousel .carousel-track .carousel-item img {
  height: 100%;
  width: auto;
}
