* {
  box-sizing: border-box;
}

.slider {
  position: absolute;
  /* top:50%; */
  /* left:50%; */
  /* transform:translate(-50%,-50%); */
  width: 100%;
  height: 100%;
  /* background-color: blue; */
  text-align: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slides {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  pointer-events: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  
  /*
  scroll-snap-points-x: repeat(300px);
  scroll-snap-type: mandatory;
  */
  align-items: center;
}
.slides::-webkit-scrollbar {
  /* width: 10px; */
  /* height: 10px; */
}
.slides::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}
.slides::-webkit-scrollbar-track {
  background: transparent;
}
.slides > div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  /* margin-right: 50px; */
  /* border-radius: 10px; */
  background: #eeeeee38;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
}
.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%;
}
.menu > div {
  pointer-events: auto;
  width: 1.2rem;
  height: 1.2rem;
  border: solid 3px white;
  background: rgb(21 173 227);
  /* 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;
}
.menu{
  visibility: hidden;
  position: absolute;
  flex-direction: row;
  justify-content: space-evenly;
  width: 69%;
  bottom: 20%;
}
#menuSlides > div{
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
}
#menuSlides > div > a{
  width:20%;
  height:100%;
  pointer-events: auto;
  z-index: 100;
}
#menuSlides > div > div{
  width:60%;
  height:100%;
  pointer-events: auto;
  z-index: -1;
}
#menuSlides > div:nth-child(1){
  display: flex;
  justify-content: flex-end;
}
#menuSlides > div:nth-child(6){
  display: flex;
  justify-content: flex-start;
}