/* =========================== image slider ============================= */
.slider-container {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: bisque;
  font-family: Arial, sans-serif;
  /* padding: 5px; */
}

.slider {
  max-width: 1100px;
  max-height: 583px;
  position: relative;
  width: 100%;
}

.description {
  max-width: 1100px;
  max-height: 583px;
  position: relative;
  width: 100%;

  padding: 10px;
  font-size: 18px;
  background-color: #333;
  color: #ff8142;
  text-align: center;
  border-radius: 4px;
}

.my-picture {
  position: relative;
  text-align: left;
  color: white;
}

.my-pic-text {
  position: absolute;
  top: 2vw;
  left: 2vw;
  padding: 2vw;
  background-color: #33333389;
}

.my-pic-text-head {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-stretch: condensed;
  font-weight: bold;
}

.image {
  width: 100%;
  /* width: 800px; */
  height: auto;
  max-width: 1100px;
  max-height: 583px;

  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  color: white;
  user-select: none;
}

.btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}
