#gallery-container {
  width: 850px;
  height: 625px;
  margin-left: auto;
  margin-right: auto;
  /* border-style: dotted; */
  /* border-color: green; */
}

#slides-container {
  width: 850px;
  height: 550px;
  /* border-style: dotted; */
  /* border-color: orange; */
}

#slide-controls-container {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  max-width: 60%;
  /* border-style: dotted; */
  /* border-color: blue; */

  .slide-dots {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 10px;
  }

  .play-pause {
    margin-left: auto;
    margin-right: auto;
  }
}

#slides{
  position: relative;
  width: 850px;
  height: 500px;
  padding: 0px;
  margin-left: auto;
  margin-right: auto;
  list-style-type: none;
  background: black;
}

.slide{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;

  -webkit-transition: opacity 2s;
  -moz-transition: opacity 2s;
  -o-transition: opacity 2s;
  transition: opacity 2s;
}

.slide img {
  width: 850px;
  height: 450px;
  object-fit: scale-down;
}

span.slide-dot {
  margin-left: 2px;
  margin-right: 2px;
  margin-top: 3px;
  margin-bottom: 3px;
  cursor: pointer;
  color: #494949;
  line-height: 1.8;
  word-wrap: normal;
  display: inline-block;
}

span.slide-dot.current {
  color: #eeeeee;
}

.slide .work-title {
  width: 425px;
  font-family: 'Quicksand', sans-serif;
  color: #7A7A7A;
  font-size: 16px;
  letter-spacing: -1px;
  line-height: 18px;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid #BCBCBC;
}

#play-pause-control {
  border: none;
  border-radius: 2px;
  background: #494949;
  color: #eeeeee;
  cursor: pointer;
}

.showing{
  opacity: 1;
  z-index: 2;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 240px;
  background: #494949;
  color: #eeeeee;
  text-align: left;
  border-radius: 6px;
  padding: 0px 5px;
  position: absolute;
  z-index: 3;
  bottom: 150%;
  left: 50%;
  margin-left: -127px;
  border: 1px solid white;
  opacity:0;
  transition:visibility 0.3s linear,opacity 0.3s linear;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

#music-container {
  margin-top: 20px;
}
