#slider-frame {
  /* border: 1px red solid; */
  padding: 10px;
}

#slideshow {
  max-width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  align-content: center;
}

#slideshow > img {
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#slide {
  width: 100%;
  height: 100%;
}
#indicator-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#indicator-container {
 align-items: center;
}

#prev, #next {
  cursor: pointer;
  top: 50%;
  width: auto;
  padding: 16px;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

#next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

#prev:hover, #next:hover {
  background-color: var(--acent-color);
  border: 1px solid black;
}

/* #indicator {
  text-align: center;
  margin-top: 10px;
} */

.indicator {
  cursor: pointer;
  height: 13px;
  width: 13px;
  margin: 0 5px;
  background-color: var(--acent-color);
  border-radius: 50%;
  display: inline-block;
  border: 1px solid black;
  transition: background-color 0.6s ease;
}

.active, .indicator:hover {
  background-color: var(--secondary-color);
}