.parallax {
  min-height: 250px;
}

.parallax-inner {
  padding: 1em 10px;
}

.slider {
  width: 73vw;
  text-align: center;
  overflow: hidden;
  font-family: 'Ropa Sans', sans-serif;
  margin-bottom: 2em;
  position: relative;
}
.finger {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 100px;
  left: 90%;
  z-index: 1;
  border-radius: 50%;
  opacity: 80%;
}

.slides {
  display: flex;
  z-index: 5;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  /*
    scroll-snap-points-x: repeat(300px);
    scroll-snap-type: mandatory;
    */
  border: 3px double grey;
  border-radius: 20px;
  box-shadow: 1px 1px 5px silver;
}

.slides::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}

.slides::-webkit-scrollbar-thumb {
  background: black;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.slides::-webkit-scrollbar-track {
  background: transparent;
}

.slides>div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 73vw;
  height: 420px;
  margin-right: 50px;
  border-radius: 10px;
  background: #eee;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
}

.slides>div:target {
  /* transform: scale(0.8); */
}

.author-info {
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 0.75rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
}

.author-info a {
  color: white;
}

img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider>a {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  background: white;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 0.5rem 0;
  position: relative;
}

.slider>a:active {
  top: 1px;
}

.slider>a:focus {
  background: #000;
}

/* Don't need button navigation */
@supports (scroll-snap-type) {
  .slider>a {
    display: none;
  }
}