.page-title {
  text-align: center;
}

.slider-container {	
 max-width: 90%;
  position: relative;
  height:0 auto;
  margin:0 auto;
  overflow: hidden;
  border-style:ridge;
border-color:#8B7E66;
border-width:5px;
border-radius: 0px;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider img {
  width: 100%;
  height:0 auto;
  object-fit: cover;
       /* Устанавливаем анимацию: */
animation-name: fade;
    animation-duration: 2.5s;
}
@keyframes fade {
    /* Устанавливаем и изменяем степень прозрачности: */
    from {
        opacity: 0.1
    }
    to {
        opacity: 1
    }
/* Ну вот, всё установилось, ура! */


}

.prev-button,
.next-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  font-size: 40px;
  color: white;

}


.prev-button {
  left: 10px;
}

.next-button {
  right: 10px;
}

