.slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.slider {
  display: flex;
  position: relative;
}

.slide {
  flex: 0 0 100%;
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide img {
  max-width: 100%;
}

.slide-text {
  margin-top: 10px;
}

.slider-arrows {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.slider-arrow {
  cursor: pointer;
  font-size: 2em;
}

.slider-dots {
  margin: 10px 0;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #333;
  margin: 0 5px;
  cursor: pointer;
}

.active {
  background-color: #ff0000;
}

.slider-container img {
    height:840px;
    width:500px;
    
}