* {
  box-sizing: border-box;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #212121;
  margin: 10px;
}

header {
  text-align: center;
}

h1, h2 {
  font-weight: normal;
  border-bottom: 1px dotted #bdbdbd;
  padding-bottom: 2px;
  display: inline-block;
}

.container {
  max-width: 1170px;
  margin: auto;
}

.slider-container {
  padding: 10px 0;
  max-height: 100vh;
}

.slides-wrapper {
  margin: auto;
  overflow: hidden;
}

.slides-container {
  padding: 0 10px;
}

.slider-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  overflow: hidden;
  transition: transform 0.5s ease-in-out;
  max-height: calc(100vh - 80px);
}

.slider-item {
  background-color: lightgray;
  /* background: linear-gradient(rgb(0, 0, 0), grey); */
  /* background-color: #e4a29c5e; */
  margin: 0 16px -4px 0;
  height: 510px;
}

.slider-item img {
  width: 80%;
  display: block;
  margin: 28px 0px 28px 28px;
}

.slider-arrows {
  display: flex;
  justify-content: space-between;
  height: 30px;
  padding: 0 10px;
  margin-top: 10px;
}

.slider-arrow-prev,
.slider-arrow-next {
  border: none;
  background-color: #ffffff;
  color: #212121;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.slider-arrow-prev:hover,
.slider-arrow-next:hover {
  background-color: #eeeeee;
}

