.body {
  background-color: black;
}
.container {
  position:  relative;
}

.centered {
  position: absolute;
  font-family: "Acumin Pro";
  font-weight:normal;
  font-size:calc(2vw + 1rem);
  top: 30vw;
  left: 7%;
  width: calc(10vw + 20rem);
  /*transform: translate(-50%, -50%);*/
  color: white;
}
.description1 {
  position: absolute;
  top: 50vw;
  right: 2%;
  color: slategray;
  font-family: "Acumin Pro Italic";
  font-size: calc(1vw + 0.3rem);
}
.bio {
  clear: right;
  margin-left: 7%;
  margin-right: 7%;
  /*margin-top: 4%;*/
  margin-bottom: 4%;
  font-family: "Acumin Pro";
  font-weight:normal;
  color: white;
  position: relative;
}
.bioDescription {
  width: 50%;
  float: left;
  font-size: calc(1vw + 1rem) ;
}
.bioPhoto {
  width: 50%;
  float: right;
}
a:link, a:visited {
  text-decoration: none;
  color:  white;
}
a:hover, a:active {
  text-decoration: underline;
  color:  white;
}
.upcomingPerforances {
  text-decoration: underline;
}

img {
  float: right;
}
.upcoming {
  clear: both;
  margin-left: 7%;
  margin-right: 7%;
  margin-top: 4%;
  margin-bottom: 7%;
  font-family: "Acumin Pro";
  font-weight:normal;
  color: white;
}
.upcomingBox {
  position: relative;
  /*background-color: white;*/
  font-size:calc(1vw + 1rem);
}
.date {
  width: 25%;
  float: left;
  color: white;
  padding-right: 5%;
}
.description {
  float: left;
  color: white;
  width: 70%;
}
.button1 {
  background-color: darkslategrey;
  border: none;
  color: white;
  /*padding: 15px 50px;*/
  padding: 1vw 5vw;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 2px 2px;
  cursor: pointer;
  border-radius: 24px;
  font-family: "Acumin Pro";
  font-weight:normal;
  font-size: calc(1vw + 0.5rem);
}
.button1:hover {
  background-color: slategray;
}
.gallery {
  font-family: "Acumin Pro";
  font-weight:normal;
  font-size:calc(0.3vw + 1rem);
  margin-left:7%;
  margin-right:7%;
}
.photos {
  max-width: 100%;
    height: auto;
    display: block;
}
.photo1 {
  float: left;
  width: 100%;
  padding-top: 2%;
}
.descriptionPhoto1 {
  text-align: right;
  padding-top: 10px;
  color: slategray;
  font-family: "Acumin Pro Italic";
  font-size: calc(1vw + 0.3rem);
  clear: right;
}
.photo2 {
  float: left;
  width: 100%;
  padding-top: 5%;
}
.descriptionPhoto2 {
  text-align: right;
  padding-top: 10px;
  color: slategray;
  font-family: "Acumin Pro Italic";
  font-size: calc(1vw + 0.3rem);
  clear: right;
}
.photo3 {
  float: left;
  padding-top: 5%;
  width: 100%;
}
.descriptionPhoto3 {
  text-align: right;
  padding-top: 10px;
  color: slategray;
  font-family: "Acumin Pro Italic";
  font-size: calc(1vw + 0.3rem);
  clear: right;
}
.photo4 {
  float: left;
  padding-top: 5%;
  width: 100%;
  margin-bottom: 7%;
}
.descriptionPhoto4 {
  text-align: right;
  padding-top: 10px;
  color: slategray;
  font-family: "Acumin Pro Italic";
  font-size: calc(1vw + 0.3rem);
  clear: right;
}

.reveal {
  position: relative;
  opacity: 0;
}
.reveal.active {
  opacity: 1;
}
.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}

@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@media only screen and (max-width: 800px) {
  /* For mobile phones: */
  .date, .description, .bioDescription, .bioPhoto {
    width: 100%;
  }
}